Skip to content

2.8.7

2.8.7 #88

Workflow file for this run

name: NodeJS
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
node:
strategy:
matrix:
os: [ubuntu-latest, macos-latest]
group: [default]
node-version: [16.x, 18.x, 20.x]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- run: npm install --ignore-scripts
- run: npm run lint
- run: npm run build
- run: npm run test