diff --git a/.github/workflows/lint.yml b/.github/workflows/lint.yml index e0a6bee..b5be09d 100644 --- a/.github/workflows/lint.yml +++ b/.github/workflows/lint.yml @@ -7,9 +7,6 @@ on: jobs: run-tests: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [20] steps: - name: Checkout uses: actions/checkout@v4 @@ -17,10 +14,10 @@ jobs: - name: Install pnpm uses: pnpm/action-setup@v4 - - name: Use Node.js ${{ matrix.node-version }} + - name: Use Node.js v20.16.0 uses: actions/setup-node@v4 with: - node-version: ${{ matrix.node-version }} + node-version: [20.16.0] cache: "pnpm" - name: Install dependencies