Skip to content

chore: code linting (#262) #6

chore: code linting (#262)

chore: code linting (#262) #6

Workflow file for this run

name: build
on:
push:
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
node-version: [ 10, 11, 12, 13, 14, 15, 16, 17, 18, 19, 20, 21, 22, 23 ]
name: node v${{ matrix.node-version }} build
steps:
- name: checkout
uses: actions/checkout@v4
- name: setup node ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: npm ci
run: npm ci
- name: npm test
run: npm test