Skip to content

Add the (advisory) "engines" field to package.json #45

Add the (advisory) "engines" field to package.json

Add the (advisory) "engines" field to package.json #45

Workflow file for this run

name: Tests
on: [push, pull_request]
jobs:
nodejs:
name: NodeJS
strategy:
matrix:
os: [ubuntu-20.04, ubuntu-22.04, macos-latest, windows-latest]
node: [16, 18, 20, 21]
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node }}
cache: yarn
- run: yarn install
- run: yarn test