YPE-953: fix(ui): fix/refactor the footnotes logic #192
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: | |
| pull_request: | |
| paths: | |
| - 'packages/ui/**' | |
| - 'pnpm-lock.yaml' | |
| jobs: | |
| integration-tests: | |
| name: Integration Tests | |
| runs-on: ubuntu-latest | |
| container: | |
| image: mcr.microsoft.com/playwright:v1.56.1-noble | |
| env: | |
| STORYBOOK_YOUVERSION_APP_KEY: ${{ secrets.STORYBOOK_YOUVERSION_APP_KEY }} | |
| STORYBOOK_AUTH_REDIRECT_URL: ${{ secrets.STORYBOOK_AUTH_REDIRECT_URL }} | |
| steps: | |
| - uses: actions/checkout@v5 | |
| - name: Setup pnpm | |
| uses: pnpm/action-setup@v4 | |
| with: | |
| version: 9.0.0 | |
| - uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| - name: Install dependencies | |
| run: pnpm install --frozen-lockfile | |
| - name: Build packages | |
| run: pnpm build | |
| - name: Run integration tests | |
| run: cd packages/ui && pnpm run test:integration | |
| env: | |
| # # Our tests intentionally need to run on staging API. | |
| YVP_API_HOST: ${{ secrets.YVP_API_HOST }} | |
| YVP_APP_KEY: ${{ secrets.YVP_APP_KEY }} | |
| STORYBOOK_YOUVERSION_API_HOST: ${{ secrets.YVP_API_HOST }} | |
| STORYBOOK_YOUVERSION_APP_KEY: ${{ secrets.STORYBOOK_YOUVERSION_APP_KEY }} |