Skip to content

Remove erroneous needs: from publishing workflow #8

Remove erroneous needs: from publishing workflow

Remove erroneous needs: from publishing workflow #8

Workflow file for this run

name: tests
on:
push:
branches: ['main']
pull_request:
paths:
- '**.js'
- '**.json'
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: ['20.x', '22.x', 'latest']
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- run: npm ci
- run: npm run check
- run: node --test