From 778f6758c3f5e14026e01b82696d13f6ff047594 Mon Sep 17 00:00:00 2001 From: Nitrrine Date: Fri, 30 Aug 2024 00:25:16 +0500 Subject: [PATCH] Declare precise node version --- .github/workflows/lint.yml | 7 ++----- 1 file changed, 2 insertions(+), 5 deletions(-) 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