Add creator dashboard with all owned campaigns #119
Workflow file for this run
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: Storybook Tests | |
| on: | |
| push: | |
| branches: [main, feat/storybook-ui-components] | |
| paths: | |
| - 'frontend/**' | |
| pull_request: | |
| branches: [main] | |
| paths: | |
| - 'frontend/**' | |
| jobs: | |
| storybook-test: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 18 | |
| cache: npm | |
| cache-dependency-path: frontend/package-lock.json | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Build Storybook | |
| run: npm run build-storybook | |
| - name: Run Storybook 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 && npm run test-storybook -- --ci" |