Fix test config for ID based tests. Remove image screenshot testing f… #3
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: 'Storybook Tests' | |
on: push | |
jobs: | |
test: | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
- name: Install dependencies | |
run: yarn | |
- name: Install Playwright | |
run: npx playwright install --with-deps | |
- name: Build Storybook | |
run: yarn build-storybook --quiet | |
- name: Serve Storybook and run tests | |
run: | | |
npx --yes concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \ | |
"npx --yes http-server storybook-static --port 6006 --silent" \ | |
"npx --yes wait-on http://127.0.0.1:6006 && yarn test-storybook" |