parent
53a92deef2
commit
53ae300100
1 changed files with 20 additions and 20 deletions
@ -1,28 +1,28 @@ |
|||||||
name: Node.js CI |
name: Node.js CI |
||||||
|
|
||||||
on: |
on: |
||||||
push: |
push: |
||||||
branches: [ master, beta ] |
branches: [ master, beta ] |
||||||
pull_request: |
pull_request: |
||||||
branches: [ master ] |
branches: [ master ] |
||||||
|
|
||||||
jobs: |
jobs: |
||||||
build: |
build: |
||||||
|
|
||||||
runs-on: ubuntu-latest |
runs-on: ubuntu-latest |
||||||
|
|
||||||
strategy: |
strategy: |
||||||
matrix: |
matrix: |
||||||
node-version: [10.x, 12.x, 13.x] |
node-version: [10.x, 12.x, 13.x] |
||||||
|
|
||||||
steps: |
steps: |
||||||
- uses: actions/checkout@v2 |
- uses: actions/checkout@v2 |
||||||
- name: Use Node.js ${{ matrix.node-version }} |
- name: Use Node.js ${{ matrix.node-version }} |
||||||
uses: actions/setup-node@v1 |
uses: actions/setup-node@v1 |
||||||
with: |
with: |
||||||
node-version: ${{ matrix.node-version }} |
node-version: ${{ matrix.node-version }} |
||||||
- run: npm ci |
- run: npm ci |
||||||
- run: npm run build --if-present |
- run: npm run build --if-present |
||||||
- run: npm test |
- run: npm test |
||||||
env: |
env: |
||||||
CI: true |
CI: true |
||||||
|
Loading…
Reference in new issue