Skip to content

Merge pull request #126 from akameco/update-deps #76

Merge pull request #126 from akameco/update-deps

Merge pull request #126 from akameco/update-deps #76

Workflow file for this run

name: test
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
# LTS (20.x) and latest (22.x) only
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v2
- name: Setup node
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm run lint
- run: npm run test