Skip to content

trigger CI after shared workflow fix #13

trigger CI after shared workflow fix

trigger CI after shared workflow fix #13

Workflow file for this run

name: Node.js CI
on: push
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20.x, 24.x]
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
steps:
- uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
node-version: ${{ matrix.node-version }}
- run: npm install
- name: Run tests
run: npx nyc@17.1.0 --reporter=lcov npm test