revert: NO-JIRA use require for json imports (#454) #1253
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Accessibility Tests | |
on: | |
push: | |
branches: | |
- staging | |
- production | |
pull_request: | |
types: ['opened', 'synchronize'] | |
paths: | |
- 'packages/dialtone-vue2/**' | |
- 'packages/dialtone-vue3/**' | |
env: | |
HUSKY: 0 | |
concurrency: | |
group: "${{ github.workflow }}-${{ github.ref }}" | |
cancel-in-progress: true | |
jobs: | |
filter-actions: | |
runs-on: ubuntu-latest | |
permissions: | |
pull-requests: read | |
outputs: | |
dialtone-vue-2: ${{ steps.filter.outputs.dialtone-vue-2 }} | |
dialtone-vue-3: ${{ steps.filter.outputs.dialtone-vue-3 }} | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Filter actions by path | |
uses: dorny/paths-filter@v3 | |
id: filter | |
with: | |
filters: | | |
dialtone-vue-2: | |
- 'packages/dialtone-vue2/**' | |
dialtone-vue-3: | |
- 'packages/dialtone-vue3/**' | |
dialtone-vue-2: | |
needs: filter-actions | |
if: ${{ needs.filter-actions.outputs.dialtone-vue-2 == 'true' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out branch | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Use pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Setup pnpm cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: "${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}" | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Build Dialtone-vue 2 library and documentation site | |
run: pnpm nx run --verbose dialtone-vue2:build-docs | |
- name: Start storybook and run a11y tests | |
run: | | |
pnpm exec concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \ | |
"pnpm exec http-server packages/dialtone-vue2/storybook-static --port 9010 --silent" \ | |
"pnpm exec wait-on tcp:9010 && pnpm nx run --verbose dialtone-vue2:test:a11y" | |
dialtone-vue-3: | |
needs: filter-actions | |
if: ${{ needs.filter-actions.outputs.dialtone-vue-3 == 'true' }} | |
runs-on: ubuntu-latest | |
steps: | |
- name: Check out branch | |
uses: actions/checkout@v4 | |
- name: Use Node.js | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Use pnpm | |
uses: pnpm/action-setup@v3 | |
with: | |
version: 9 | |
run_install: false | |
- name: Get pnpm store directory | |
shell: bash | |
run: | | |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV | |
- name: Setup pnpm cache | |
uses: actions/cache@v4 | |
with: | |
path: ${{ env.STORE_PATH }} | |
key: "${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}" | |
restore-keys: | | |
${{ runner.os }}-pnpm-store- | |
- name: Install dependencies | |
run: pnpm install --frozen-lockfile | |
- name: Install Playwright Browsers | |
run: pnpm exec playwright install --with-deps | |
- name: Build Dialtone-vue 3 library and documentation site | |
run: pnpm nx run --verbose dialtone-vue3:build-docs | |
- name: Start storybook and run a11y tests | |
run: | | |
pnpm exec concurrently -k -s first -n "SB,TEST" -c "green,yellow" \ | |
"pnpm exec http-server packages/dialtone-vue3/storybook-static --port 9011 --silent" \ | |
"pnpm exec wait-on tcp:9011 && pnpm nx run --verbose dialtone-vue3:test:a11y" |