diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 9fd8914..f226ec3 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -16,18 +16,13 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [12.x, 14.x, 16.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js 22 uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: 22 cache: "npm" - run: npm ci