Skip to content

switch to npm

switch to npm #245

Workflow file for this run

name: CI
on:
push:
branches: [ master, 'v*' ]
pull_request:
branches: [ master, 'v*' ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [10.x, 12.x, 14.x, 16.x, 18.x, 20.x]
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: npm
- run: npm ci
- run: npm run lint:js
- run: npm test