Merge branch 'staging' into develop #767
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 client | |
on: | |
push: | |
paths: | |
- 'app/**' | |
- '.github/workflows/e2e-client.yml' | |
- '!app/README.md' | |
jobs: | |
e2e_client: | |
timeout-minutes: 15 | |
runs-on: ubuntu-22.04 | |
strategy: | |
fail-fast: false | |
defaults: | |
run: | |
working-directory: app | |
steps: | |
- name: checkout pull | |
uses: actions/checkout@v4 | |
- name: Node setup | |
uses: actions/setup-node@v3 | |
with: | |
node-version-file: 'app/.nvmrc' | |
cache: yarn | |
cache-dependency-path: 'app/yarn.lock' | |
- name: Install dependencies | |
run: yarn install --immutable | |
- name: Install Playwright Browsers | |
run: yarn playwright install --with-deps | |
- name: Run Playwright tests | |
run: yarn playwright test | |
- uses: actions/upload-artifact@v3 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 | |
env: | |
NEXT_PUBLIC_MAPBOX_API_TOKEN: ${{ secrets.NEXT_PUBLIC_MAPBOX_API_TOKEN }} | |
# Recommended: pass the GitHub token lets this action correctly | |
# determine the unique run id necessary to re-run the checks | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |