From 893e260fcd7266a36d49fa5cc28c5a533e6b3a83 Mon Sep 17 00:00:00 2001 From: George Cushen Date: Tue, 24 Oct 2023 22:52:26 +0100 Subject: [PATCH] chore: update lint rules --- .github/workflows/build-test-site.yaml | 13 ++++++++++--- 1 file changed, 10 insertions(+), 3 deletions(-) diff --git a/.github/workflows/build-test-site.yaml b/.github/workflows/build-test-site.yaml index 2d0703d6..fd558157 100644 --- a/.github/workflows/build-test-site.yaml +++ b/.github/workflows/build-test-site.yaml @@ -23,10 +23,17 @@ jobs: submodules: true # Fetch any Git submodules (true OR recursive) fetch-depth: 0 # Fetch all history for .GitInfo and .Lastmod - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v3 +# - name: Use Node.js ${{ matrix.node-version }} +# uses: actions/setup-node@v3 +# with: +# node-version: ${{ matrix.node-version }} + + - uses: pnpm/action-setup@v2 with: - node-version: ${{ matrix.node-version }} + version: 8 + run_install: | + - recursive: false + args: [--frozen-lockfile] - name: Install JS dependencies run: rm -rf node_modules && pnpm install --frozen-lockfile