|
|
|
@@ -3,12 +3,12 @@ name: Verify changes |
|
|
|
on: [push, pull_request] |
|
|
|
|
|
|
|
jobs: |
|
|
|
build: |
|
|
|
tests: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
node-version: [0.10.x, 0.12.x, 4.x, 6.x, 8.x, 10.x, 12.x] |
|
|
|
node-version: [8.x, 10.x, 12.x] |
|
|
|
|
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v1 |
|
|
|
@@ -20,3 +20,21 @@ jobs: |
|
|
|
run: | |
|
|
|
npm install |
|
|
|
npm test |
|
|
|
|
|
|
|
tests-on-legacy: |
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
strategy: |
|
|
|
matrix: |
|
|
|
node-version: [0.10.x, 0.12.x, 4.x, 6.x] |
|
|
|
|
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v1 |
|
|
|
- name: Setup Node.js |
|
|
|
uses: actions/setup-node@v1 |
|
|
|
with: |
|
|
|
node-version: ${{ matrix.node-version }} |
|
|
|
- name: npm install and test |
|
|
|
run: | |
|
|
|
npm install mocha@3 chai@3 |
|
|
|
npm run test-unit |