ci: runs on develop
branch
This commit is contained in:
parent
c0034d5af6
commit
7e3ef0f492
4
.github/workflows/build.yml
vendored
4
.github/workflows/build.yml
vendored
@ -2,9 +2,9 @@ name: 'Build'
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master]
|
branches: [master, develop]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches: [master, develop]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
build:
|
build:
|
||||||
|
4
.github/workflows/lint.yml
vendored
4
.github/workflows/lint.yml
vendored
@ -2,9 +2,9 @@ name: 'Lint'
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master]
|
branches: [master, develop]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches: [master, develop]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
lint:
|
lint:
|
||||||
|
55
.github/workflows/release.yml
vendored
55
.github/workflows/release.yml
vendored
@ -1,38 +1,29 @@
|
|||||||
# name: 'Release'
|
name: 'Release'
|
||||||
|
|
||||||
# on:
|
on:
|
||||||
# push:
|
push:
|
||||||
# branches: [master]
|
branches: [master, develop]
|
||||||
|
|
||||||
# jobs:
|
jobs:
|
||||||
# build:
|
build:
|
||||||
# runs-on: 'ubuntu-latest'
|
runs-on: 'ubuntu-latest'
|
||||||
# steps:
|
steps:
|
||||||
# - uses: 'actions/checkout@v3.0.0'
|
- uses: 'actions/checkout@v3.0.0'
|
||||||
|
|
||||||
# - name: 'Use Node.js'
|
- name: 'Use Node.js'
|
||||||
# uses: 'actions/setup-node@v3.1.0'
|
uses: 'actions/setup-node@v3.1.0'
|
||||||
# with:
|
with:
|
||||||
# node-version: 'lts/*'
|
node-version: 'lts/*'
|
||||||
# cache: 'npm'
|
cache: 'npm'
|
||||||
|
|
||||||
# - name: 'Install'
|
- name: 'Install'
|
||||||
# run: 'npm install'
|
run: 'npm install'
|
||||||
|
|
||||||
# - name: 'Build Package'
|
- name: 'Build Package'
|
||||||
# run: 'npm run build'
|
run: 'npm run build'
|
||||||
|
|
||||||
# - name: 'Build Example'
|
- name: 'Release'
|
||||||
# run: 'cd example && npm install && npm run build'
|
run: 'npm run release'
|
||||||
|
env:
|
||||||
# - name: 'Deploy Example'
|
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
||||||
# uses: 'JamesIves/github-pages-deploy-action@v4.3.0'
|
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
||||||
# with:
|
|
||||||
# branch: 'gh-pages'
|
|
||||||
# folder: 'example/dist'
|
|
||||||
|
|
||||||
# - name: 'Release'
|
|
||||||
# run: 'npm run release'
|
|
||||||
# env:
|
|
||||||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
|
|
||||||
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
|
|
||||||
|
4
.github/workflows/test.yml
vendored
4
.github/workflows/test.yml
vendored
@ -2,9 +2,9 @@ name: 'Test'
|
|||||||
|
|
||||||
on:
|
on:
|
||||||
push:
|
push:
|
||||||
branches: [master]
|
branches: [master, develop]
|
||||||
pull_request:
|
pull_request:
|
||||||
branches: [master]
|
branches: [master, develop]
|
||||||
|
|
||||||
jobs:
|
jobs:
|
||||||
test:
|
test:
|
||||||
|
Reference in New Issue
Block a user