From 443f178d92c8089a1140c3bc1be2f75a4a1d4831 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 13 Nov 2021 17:28:32 +0100 Subject: [PATCH 1/3] Test configuration ci --- .github/workflows/ci.yml | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 96bdb52..eea7dc3 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -9,8 +9,12 @@ jobs: steps: - uses: actions/checkout@v2 - uses: pnpm/action-setup@v2.0.1 - with: - version: 6.20.3 + with: + version: 6.0.2 + run_install: | + - recursive: true + args: [--frozen-lockfile, --strict-peer-dependencies] + - args: [--global, gulp, prettier, typescript] - uses: actions/setup-node@v2 with: node-version: '14.x' From d538b1b167b2545e5754492d681a87f5759cfa62 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 13 Nov 2021 17:45:55 +0100 Subject: [PATCH 2/3] revert pnpm --- .github/workflows/ci.yml | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index eea7dc3..f78573e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,22 +8,15 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 - - uses: pnpm/action-setup@v2.0.1 - with: - version: 6.0.2 - run_install: | - - recursive: true - args: [--frozen-lockfile, --strict-peer-dependencies] - - args: [--global, gulp, prettier, typescript] - uses: actions/setup-node@v2 with: node-version: '14.x' - name: Install dependencies - run: pnpm ci + run: npm ci - name: Install Playwright - run: pnpx playwright install --with-deps + run: npx playwright install --with-deps - name: Run Playwright tests - run: pnpm run test + run: npm run test env: # This might depend on your test-runner/language binding PLAYWRIGHT_TEST_BASE_URL: ${{ github.event.deployment_status.target_url }} From 73679dba8c5547481501b0d264cdb7d26a513834 Mon Sep 17 00:00:00 2001 From: Michael Date: Sat, 13 Nov 2021 18:52:27 +0100 Subject: [PATCH 3/3] Fix ci --- .github/workflows/ci.yml | 9 ++++++--- 1 file changed, 6 insertions(+), 3 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f78573e..93d691d 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -8,15 +8,18 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@v2 + - uses: pnpm/action-setup@v2.0.1 + with: + version: 6.0.2 - uses: actions/setup-node@v2 with: node-version: '14.x' - name: Install dependencies - run: npm ci + run: pnpm install - name: Install Playwright - run: npx playwright install --with-deps + run: pnpx playwright install --with-deps - name: Run Playwright tests - run: npm run test + run: pnpm run test env: # This might depend on your test-runner/language binding PLAYWRIGHT_TEST_BASE_URL: ${{ github.event.deployment_status.target_url }}