Merge pull request #166 from spences10/renovate/actions-checkout-4.x #296
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: 'Tests: E2E' | |
on: | |
push: | |
branches: [main] | |
pull_request: | |
branches: [main] | |
types: [opened, synchronize] | |
jobs: | |
tests_e2e: | |
name: Run end-to-end tests | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/cache@v3 | |
with: | |
path: ~/.pnpm-store | |
# prettier-ignore | |
key: ${{ runner.os }}-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: ${{ runner.os }}-pnpm- | |
- uses: pnpm/[email protected] | |
with: | |
version: 6.0.2 | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: 18.x | |
- name: Install dependencies | |
run: pnpm i | |
- name: Install playwright browsers | |
run: npx playwright install --with-deps | |
- name: Test | |
run: pnpm run test | |
env: | |
PUBLIC_FATHOM_ID: ${{ secrets.PUBLIC_FATHOM_ID }} | |
PUBLIC_FATHOM_URL: ${{ secrets.PUBLIC_FATHOM_URL }} |