From 867a847d36bcf04a7c7695ec1d3ffde0b295436e Mon Sep 17 00:00:00 2001 From: Adrian Schmidt Date: Mon, 30 Oct 2023 10:07:23 +0100 Subject: [PATCH] tmp: run linting on windows, to see if it works with the symlink --- .github/workflows/pr-checks.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pr-checks.yml b/.github/workflows/pr-checks.yml index 933b65e32c..06b0911e78 100644 --- a/.github/workflows/pr-checks.yml +++ b/.github/workflows/pr-checks.yml @@ -9,7 +9,7 @@ concurrency: jobs: lint: name: Lint - runs-on: ubuntu-latest + runs-on: windows-latest steps: - uses: actions/checkout@v3 - name: Read .nvmrc @@ -20,7 +20,7 @@ jobs: node-version: "${{ steps.nvm.outputs.NVMRC }}" - run: node -v && npm -v - run: npm ci - - run: npm run lint:prod + - run: npm run lint build: name: Build