diff --git a/.github/workflows/node.js.yml b/.github/workflows/node.js.yml index fe24cce..f5549ae 100644 --- a/.github/workflows/node.js.yml +++ b/.github/workflows/node.js.yml @@ -10,17 +10,12 @@ jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [14.x, 16.x, 18.x] - steps: - uses: actions/checkout@v3 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js uses: actions/setup-node@v3 with: - node-version: ${{ matrix.node-version }} - cache: "npm" + node-version: "20" # Specify the Node.js version here - name: Install dependencies run: yarn install