Bump buf dependencies #128
This file contains 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: E2E Tests | |
on: | |
pull_request: | |
branches: | |
- main | |
push: | |
tags: | |
- v* | |
jobs: | |
e2e: | |
timeout-minutes: 10 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Start containers | |
run: make ci/compose-up | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 18 | |
- name: Install dependencies | |
run: npm ci | |
- name: Install E2E Browsers | |
run: npx playwright install --with-deps | |
- name: Run E2E tests | |
run: npx playwright test | |
- name: Stop containers | |
if: always() | |
run: make ci/compose-down | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: report | |
path: playwright-report/ | |
retention-days: 10 |