c7169b3461
* run storybook a11y tests in both light and dark theme * remove unused import * update unit tests
87 lines
2.8 KiB
YAML
87 lines
2.8 KiB
YAML
name: Run Storybook a11y tests
|
|
on:
|
|
pull_request:
|
|
push:
|
|
branches:
|
|
- main
|
|
- release-*.*.*
|
|
|
|
permissions: {}
|
|
|
|
jobs:
|
|
detect-changes:
|
|
name: Detect whether code changed
|
|
runs-on: ubuntu-latest
|
|
permissions:
|
|
contents: read
|
|
outputs:
|
|
changed: ${{ steps.detect-changes.outputs.frontend }}
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
persist-credentials: true # required to get more history in the changed-files action
|
|
fetch-depth: 2
|
|
- name: Detect changes
|
|
id: detect-changes
|
|
uses: ./.github/actions/change-detection
|
|
with:
|
|
self: .github/workflows/storybook-a11y.yml
|
|
|
|
test-storybook-a11y-light:
|
|
runs-on: ubuntu-latest-8-cores
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
needs: detect-changes
|
|
if: needs.detect-changes.outputs.changed == 'true'
|
|
name: "Run Storybook a11y tests"
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
persist-credentials: false
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- run: yarn install --immutable --check-cache
|
|
- name: Install Playwright browsers
|
|
run: npx playwright install --with-deps
|
|
- name: Start Storybook
|
|
run: STORYBOOK_THEME=light yarn storybook &
|
|
- name: Run tests
|
|
# the chromium browser used by Playwright sets its locale to "en_US@posix" by default
|
|
# this is not a valid language code, and causes some stories to fail to load!
|
|
# instead, we set the LANG environment variable to en_US to override this
|
|
# see https://github.com/microsoft/playwright/issues/34046
|
|
env:
|
|
LANG: en_US
|
|
run: npx wait-on --timeout 120000 http://localhost:9001 && yarn test:storybook
|
|
|
|
test-storybook-a11y-dark:
|
|
runs-on: ubuntu-latest-8-cores
|
|
permissions:
|
|
contents: read
|
|
id-token: write
|
|
needs: detect-changes
|
|
if: needs.detect-changes.outputs.changed == 'true'
|
|
name: "Run Storybook a11y tests"
|
|
steps:
|
|
- uses: actions/checkout@v5
|
|
with:
|
|
persist-credentials: false
|
|
- uses: actions/setup-node@v4
|
|
with:
|
|
node-version-file: '.nvmrc'
|
|
- run: yarn install --immutable --check-cache
|
|
- name: Install Playwright browsers
|
|
run: npx playwright install --with-deps
|
|
- name: Start Storybook
|
|
run: STORYBOOK_THEME=dark yarn storybook &
|
|
- name: Run tests
|
|
# the chromium browser used by Playwright sets its locale to "en_US@posix" by default
|
|
# this is not a valid language code, and causes some stories to fail to load!
|
|
# instead, we set the LANG environment variable to en_US to override this
|
|
# see https://github.com/microsoft/playwright/issues/34046
|
|
env:
|
|
LANG: en_US
|
|
run: npx wait-on --timeout 120000 http://localhost:9001 && yarn test:storybook
|