Migrate away from redux #5
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: Test | |
on: [push] | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Setup Node | |
uses: actions/setup-node@v4 | |
- name: Install dependencies | |
run: yarn install | |
# Install Playwright browsers so Vitest browser mode can run story tests | |
- name: Install playwright dependencies | |
run: yarn exec playwright install chromium --with-deps | |
- name: Run tests | |
run: | | |
yarn test-storybook |