diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index 46c35ba..24ac2cc 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -12,17 +12,12 @@ jobs: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [17.x, 18.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 }} - uses: actions/setup-node@v3 + - name: Use Node.js latest + uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: latest - run: | cd client || exit 1 npm ci