Aliaksei Chapyzhenka 0e698e5281 +node 18
2022-04-21 21:16:01 -07:00

18 lines
429 B
YAML

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