From 8eccda85219f580616fa624cfa41dd6333a75e56 Mon Sep 17 00:00:00 2001 From: Garris Date: Fri, 23 Feb 2024 01:47:53 -0800 Subject: [PATCH] Delete .github/workflows/backstop-sanity-test.yml --- .github/workflows/backstop-sanity-test.yml | 61 ---------------------- 1 file changed, 61 deletions(-) delete mode 100644 .github/workflows/backstop-sanity-test.yml diff --git a/.github/workflows/backstop-sanity-test.yml b/.github/workflows/backstop-sanity-test.yml deleted file mode 100644 index 230ee4ed6..000000000 --- a/.github/workflows/backstop-sanity-test.yml +++ /dev/null @@ -1,61 +0,0 @@ -name: Backstop Sanity Tests - -on: - workflow_dispatch: - workflow_call: - -permissions: - actions: write - contents: write - pull-requests: write - -env: - NODE_VERSION: 20 - -jobs: - sanity-puppeteer: - name: 🤪 Puppeteer - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 1 - ref: ${{ github.event.pull_request.head.sha || github.ref }} - - - name: ⬢ Setup Node & Cache - uses: actions/setup-node@v4 - with: - cache: "npm" - cache-dependency-path: package-lock.json - - - name: ↧ Install - run: npm ci - - - name: "𓋏 Run `npm run sanity-test`" - run: | - npm run sanity-test - - sanity-playwright: - name: 🤪 Playwright - runs-on: ubuntu-latest - steps: - - name: Checkout - uses: actions/checkout@v4 - with: - fetch-depth: 1 - ref: ${{ github.event.pull_request.head.sha || github.ref }} - - - name: ⬢ Setup Node & Cache - uses: actions/setup-node@v4 - with: - cache: "npm" - cache-dependency-path: package-lock.json - - - name: ↧ Install - run: npm ci - - - name: "🎭 Run `npm run sanity-test-playwright`" - run: | - npx playwright install --with-deps - npm run sanity-test-playwright