From 640721a5c45b5c740c9523515f36ce39f8666972 Mon Sep 17 00:00:00 2001 From: Dan Grebb Date: Sun, 26 Nov 2023 18:24:46 -0500 Subject: [PATCH] style(github): adjusts workflow/job/step names --- .github/workflows/backstop-integration-test.yml | 2 +- .github/workflows/backstop-sanity-test.yml | 8 ++++---- .github/workflows/backstop-smoke-test.yml | 8 ++++---- .github/workflows/docker-sanity-test.yml | 8 ++++---- .github/workflows/docker-smoke-test.yml | 8 ++++---- .github/workflows/test-docker.yml | 4 ++-- 6 files changed, 19 insertions(+), 19 deletions(-) diff --git a/.github/workflows/backstop-integration-test.yml b/.github/workflows/backstop-integration-test.yml index 689251892..da07a994d 100644 --- a/.github/workflows/backstop-integration-test.yml +++ b/.github/workflows/backstop-integration-test.yml @@ -31,6 +31,6 @@ jobs: - name: โ†ง Install run: npm ci - - name: ๐Ÿงช Test + - name: "๐“‹ Run `npm run integration-test`" run: | npm run integration-test diff --git a/.github/workflows/backstop-sanity-test.yml b/.github/workflows/backstop-sanity-test.yml index 96f949625..6e74932f5 100644 --- a/.github/workflows/backstop-sanity-test.yml +++ b/.github/workflows/backstop-sanity-test.yml @@ -13,7 +13,7 @@ env: jobs: sanity-puppeteer: - name: ๐Ÿคช Puppet Sanity + name: ๐Ÿคช Puppeteer runs-on: ubuntu-latest steps: - name: Checkout @@ -31,12 +31,12 @@ jobs: - name: โ†ง Install run: npm ci - - name: ๐Ÿงธ Test Puppeteer + - name: "๐“‹ Run `npm run sanity-test`" run: | npm run sanity-test sanity-playwright: - name: ๐Ÿคช Playwright Sanity + name: ๐Ÿคช Playwright runs-on: ubuntu-latest steps: - name: Checkout @@ -54,7 +54,7 @@ jobs: - name: โ†ง Install run: npm ci - - name: ๐ŸŽญ Test Playwright + - name: "๐ŸŽญ Run `npm run sanity-test-playwright`" run: | npx playwright install --with-deps npm run sanity-test-playwright diff --git a/.github/workflows/backstop-smoke-test.yml b/.github/workflows/backstop-smoke-test.yml index 39be45401..7157b0fea 100644 --- a/.github/workflows/backstop-smoke-test.yml +++ b/.github/workflows/backstop-smoke-test.yml @@ -13,7 +13,7 @@ env: jobs: smoke-puppeteer: - name: ๐Ÿ’จ Puppet Smoke + name: ๐Ÿ’จ Puppeteer runs-on: ubuntu-latest steps: - name: Checkout @@ -31,13 +31,13 @@ jobs: - name: โ†ง Install run: npm ci - - name: ๐Ÿงธ Puppeteer Smoke + - name: "๐“‹ Run `npm run smoke-test`" continue-on-error: true run: | npm run smoke-test smoke-playwright: - name: ๐Ÿ’จ Playwright Smoke + name: ๐Ÿ’จ Playwright runs-on: ubuntu-latest steps: - name: Checkout @@ -55,7 +55,7 @@ jobs: - name: โ†ง Install run: npm ci - - name: ๐ŸŽญ Playwright Smoke + - name: "๐ŸŽญ Run `npm run smoke-test-playwright`" continue-on-error: true run: | npx playwright install --with-deps diff --git a/.github/workflows/docker-sanity-test.yml b/.github/workflows/docker-sanity-test.yml index 05bcb47af..cd3957fb1 100644 --- a/.github/workflows/docker-sanity-test.yml +++ b/.github/workflows/docker-sanity-test.yml @@ -18,7 +18,7 @@ env: jobs: sanity-test-puppeteer: - name: ๐Ÿคช Puppeteer Sanity + name: ๐Ÿคช Puppeteer runs-on: ubuntu-latest permissions: @@ -61,12 +61,12 @@ jobs: run: | docker pull $REGISTRY/$IMAGE_NAME_LC:$TAG - - name: ๐Ÿงธ Puppeteer Sanity + - name: "๐“‹ Run `backstop test` in Docker" run: | cd test/configs/ && docker run --rm -t --mount type=bind,source="$(pwd)",target=/src $REGISTRY/$IMAGE_NAME_LC:$TAG test sanity-test-playwright: - name: ๐Ÿคช Playwright Sanity + name: ๐Ÿคช Playwright runs-on: ubuntu-latest permissions: @@ -109,6 +109,6 @@ jobs: run: | docker pull $REGISTRY/$IMAGE_NAME_LC:$TAG - - name: ๐ŸŽญ Playwright Sanity + - name: "๐ŸŽญ Run `backstop test --confg=playwright` in Docker" run: | cd test/configs/ && docker run --rm -t --entrypoint='' --mount type=bind,source="$(pwd)",target=/src $REGISTRY/$IMAGE_NAME_LC:$TAG sh -c "chmod -R 777 /root && chmod -R 777 /opt/pw-browsers && npm --verbose --foreground-scripts i -D playwright && npx --verbose --foreground-scripts --yes playwright@$PLAYWRIGHT_VERSION install && backstop test --config=playwright" diff --git a/.github/workflows/docker-smoke-test.yml b/.github/workflows/docker-smoke-test.yml index 274ee012a..5258fe381 100644 --- a/.github/workflows/docker-smoke-test.yml +++ b/.github/workflows/docker-smoke-test.yml @@ -18,7 +18,7 @@ env: jobs: smoke-test-puppeteer: - name: ๐Ÿ’จ Puppeteer Smoke + name: ๐Ÿ’จ Puppeteer runs-on: ubuntu-latest permissions: @@ -60,13 +60,13 @@ jobs: run: | docker pull $REGISTRY/$IMAGE_NAME_LC:$TAG - - name: ๐Ÿงธ Puppeteer Smoke + - name: "๐“‹ Run `backstop test --confg=backstop_features` in Docker" continue-on-error: true run: | cd test/configs/ && docker run --rm -t --mount type=bind,source="$(pwd)",target=/src $REGISTRY/$IMAGE_NAME_LC:$TAG test --config=backstop_features smoke-test-playwright: - name: ๐Ÿ’จ Playwright Smoke + name: ๐Ÿ’จ Playwright runs-on: ubuntu-latest permissions: @@ -108,7 +108,7 @@ jobs: run: | docker pull $REGISTRY/$IMAGE_NAME_LC:$TAG - - name: ๐ŸŽญ Playwright Smoke + - name: "๐ŸŽญ Run `backstop test --confg=backstop_features_pw` in Docker" continue-on-error: true run: | cd test/configs/ && docker run --rm -t --entrypoint='' --mount type=bind,source="$(pwd)",target=/src $REGISTRY/$IMAGE_NAME_LC:$TAG sh -c "npm -g config set user root && chmod -R 777 /root && chmod -R 777 /opt/pw-browsers && npm --verbose i -D playwright && npx --verbose --foreground-scripts --yes playwright@$PLAYWRIGHT_VERSION install && backstop test --config=backstop_features_pw" diff --git a/.github/workflows/test-docker.yml b/.github/workflows/test-docker.yml index 6940be31c..772be000b 100644 --- a/.github/workflows/test-docker.yml +++ b/.github/workflows/test-docker.yml @@ -12,9 +12,9 @@ permissions: jobs: sanity-test: - name: ๐Ÿ’จ Smoke Test Docker + name: ๐Ÿ’จ Docker Smoke Test uses: ./.github/workflows/docker-smoke-test.yml smoke-test: - name: ๐Ÿคช Sanity Test Docker + name: ๐Ÿคช Docker Sanity Test uses: ./.github/workflows/docker-sanity-test.yml