diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 4f4189c..223049a 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -13,18 +13,13 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [22.x] - # See supported Node.js release schedule at https://nodejs.org/en/about/releases/ - steps: - uses: actions/checkout@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} + node-version: "22.x" cache: "npm" - - run: npm i + - run: npm install - run: npm run build --if-present - run: npm test