Skip to content

fix(ci): update versions #21

fix(ci): update versions

fix(ci): update versions #21

Workflow file for this run

name: CI
on: [push, pull_request]
jobs:
test:
name: Node.js v${{ matrix.nodejs }}
runs-on: ubuntu-latest
timeout-minutes: 3
strategy:
matrix:
nodejs: [6, 8, 10, 12, 14]
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: ${{ matrix.nodejs }}
- run: npm install
- run: npm run build
- run: npm test