feat: Redoc v3.0.0 #11
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: Tests e2e | |
| on: | |
| pull_request: | |
| branches: | |
| - main | |
| jobs: | |
| build-and-e2e: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout Repo | |
| uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4 | |
| with: | |
| node-version: 24.11.1 | |
| cache: 'npm' | |
| - name: Install Dependencies | |
| run: npm ci --ignore-scripts --no-fund | |
| - name: Bundle | |
| run: npm run build:standalone | |
| - name: Prepare Playwright | |
| uses: ./.github/actions/setup-playwright | |
| - name: Run e2e tests | |
| run: npm run e2e:prepare && npm run e2e |