Skip to content

fix(deps): update dependency eslint-plugin-n to ^17.17.0 #681

fix(deps): update dependency eslint-plugin-n to ^17.17.0

fix(deps): update dependency eslint-plugin-n to ^17.17.0 #681

Workflow file for this run

name: test
on: [ push, pull_request ]
permissions:
contents: read
jobs:
test:
name: Test(Node ${{ matrix.node }} on ${{ matrix.os }})
runs-on: ${{ matrix.os }}
strategy:
matrix:
os: [ubuntu-latest, windows-latest]
node: [ 20, 22 ]
steps:
- name: checkout
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2
- name: setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@cdca7365b2dadb8aad0a33bc7601856ffabcc48e # v4.3.0
with:
cache: "npm"
node-version: ${{ matrix.node-version }}
- name: Install
run: npm ci
- name: Test
run: npm test