This commit is contained in:
Aliaksei Chapyzhenka 2021-10-10 22:07:14 -07:00
parent dc1e639cc5
commit b023654b2a
3 changed files with 7 additions and 7 deletions

View File

@ -1,4 +1,4 @@
name: Linux WASM name: Linux NAPI
on: [push, pull_request] on: [push, pull_request]
jobs: jobs:
test: test:
@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [15, 16] node-version: [12, 14]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
@ -14,4 +14,4 @@ jobs:
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm i - run: npm i
- run: npm run nyc_mocha_wasm - run: npm run mocha_napi

View File

@ -6,7 +6,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
strategy: strategy:
matrix: matrix:
node-version: [12, 14, 15, 16] node-version: [15, 16]
steps: steps:
- uses: actions/checkout@v1 - uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }} - name: Use Node.js ${{ matrix.node-version }}
@ -14,4 +14,4 @@ jobs:
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm i - run: npm i
- run: npm run nyc_mocha_napi - run: npm test

View File

@ -13,5 +13,5 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: ${{ matrix.node-version }} node-version: ${{ matrix.node-version }}
- run: npm i --no-optional - run: npm i
- run: npm run nyc_mocha_napi - run: npm run nyc_mocha_wasm