Chore/sync 2026 04 01 manual (#94) #404
This file contains hidden or 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: CI | |
| on: push | |
| jobs: | |
| interaction-and-accessibility: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - uses: actions/setup-node@v4.1.0 | |
| with: | |
| node-version: 24.14.0 | |
| - name: Install dependencies | |
| run: npm install | |
| - name: Install Playwright | |
| run: npx playwright install --with-deps | |
| - name: Build Storybook | |
| run: npm run build-storybook --quiet | |
| - name: Serve Storybook and run tests | |
| run: | | |
| npx concurrently -k -s first -n "SB,TEST" -c "magenta,blue" \ | |
| "npx http-server storybook-static --port 6006 --silent" \ | |
| "npx wait-on tcp:6006 && yarn test-storybook" | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v4.1.0 | |
| with: | |
| node-version: 24.14.0 | |
| - name: Get Version | |
| run: npm -v | |
| - name: Install modules | |
| run: npm ci | |
| - name: Run ESLint | |
| run: npm run lint |