--- /dev/null
+name: CI
+
+on:
+ push:
+ branches:
+ - master
+ pull_request:
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [12.x, 14.x]
+
+ steps:
+ - name: Checkout
+ uses: actions/checkout@v2
+
+ - name: Set node version to ${{ matrix.node-version }}
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node-version }}
+
+ - name: Install
+ run: npm ci
+
+ - name: Build
+ run: npm run build --if-present
+
+ - name: Test
+ if: github.ref != 'refs/heads/master'
+ run: npm run test
+
+ - name: Test & Coverage
+ if: github.ref == 'refs/heads/master'
+ run: |
+ npm run test
+ export COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }}
+ npm run coverage
+ env:
+ CI: true
+++ /dev/null
-name: NodeCI
-
-on: [push]
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- node-version: [12.x, 14.x]
-
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: npm install, build, and test
- run: |
- npm ci
- npm run build --if-present
- npm run test
- export COVERALLS_REPO_TOKEN=${{ secrets.COVERALLS_REPO_TOKEN }}
- npm run coverage
- env:
- CI: true
+++ /dev/null
-name: NodeCI-PR
-
-on: [pull_request]
-
-jobs:
- build:
- runs-on: ubuntu-latest
-
- strategy:
- matrix:
- node-version: [12.x, 14.x]
-
- steps:
- - uses: actions/checkout@v1
- - name: Use Node.js ${{ matrix.node-version }}
- uses: actions/setup-node@v1
- with:
- node-version: ${{ matrix.node-version }}
- - name: npm install, build, and test
- run: |
- npm ci
- npm run build --if-present
- npm run test
- env:
- CI: true