Bump express-rate-limit from 8.2.1 to 8.4.1 #174
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: Integration Tests | |
| on: | |
| pull_request: | |
| push: | |
| branches: | |
| - "**" | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: integration-${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| installer-playwright: | |
| name: Installer E2E (Playwright) | |
| runs-on: ubuntu-latest | |
| container: | |
| image: node:24-bookworm | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Install Playwright browser + deps | |
| run: npx playwright install --with-deps chromium | |
| - name: Run installer integration suite | |
| run: npm run test:integration:ci | |
| - name: Upload Playwright HTML report | |
| if: always() | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: playwright-report | |
| path: playwright-report/ | |
| if-no-files-found: ignore | |
| - name: Upload Playwright test results | |
| if: always() | |
| uses: actions/upload-artifact@ea165f8d65b6e75b540449e92b4886f43607fa02 # v4.6.2 | |
| with: | |
| name: playwright-test-results | |
| path: test-results/ | |
| if-no-files-found: ignore |