diff --git a/.github/workflows/nodejs.yml b/.github/workflows/nodejs.yml index 87738d3..aa95896 100644 --- a/.github/workflows/nodejs.yml +++ b/.github/workflows/nodejs.yml @@ -16,17 +16,16 @@ jobs: strategy: matrix: - node-version: [16.x] + node-version: [18.x, 20.x, 22.x] steps: - - uses: actions/checkout@v2 + - uses: actions/checkout@v4 - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 + uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm ci - - run: npm install - run: npm run build - - run: npm run test + - run: npm run test:node env: CI: true