Skip to content

ci: update GitHub action versions #57

ci: update GitHub action versions

ci: update GitHub action versions #57

Workflow file for this run

name: ci
on:
push:
branches:
- main
paths-ignore:
- 'docs/**'
- '*.md'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node: ['16', '18', '20', '22']
steps:
- uses: actions/checkout@v4
- name: Setup node ${{ matrix.node }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node }}
- run: npm install
- run: npm test