chore(deps): bump vite from 5.4.3 to 5.4.6 #23
Workflow file for this run
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: | |
workflow_dispatch: | |
pull_request: | |
branches: [main] | |
env: | |
CI: true | |
E2E_URL: ${{ github.event_name == 'workflow_dispatch' && vars.E2E_PRODUCTION_URL || vars.E2E_SELF_HOSTED_URL }} | |
E2E_COMMAND: ${{ github.event_name == 'workflow_dispatch' && 'yarn test:e2e' || 'yarn test:e2e:changed' }} | |
jobs: | |
e2e-tests: | |
name: Run E2E tests | |
timeout-minutes: 60 | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js version from .nvmrc | |
id: nvmrc | |
run: echo "NODE_VERSION=$(cat .nvmrc)" >> $GITHUB_ENV | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- name: Enable Corepack | |
run: corepack enable | |
- name: Get Yarn version from package.json | |
id: yarn_version | |
run: | | |
YARN_VERSION=$(jq -r '.packageManager' package.json | grep -o 'yarn@[0-9]*\.[0-9]*\.[0-9]*') | |
echo "YARN_VERSION=${YARN_VERSION}" >> $GITHUB_ENV | |
- name: Install correct Yarn version | |
run: corepack prepare ${{ env.YARN_VERSION }} --activate | |
- name: Install dependencies | |
run: yarn install --frozen-lockfile | |
- name: Install Playwright Browsers | |
run: yarn playwright install --with-deps | |
- name: Run E2E Tests | |
run: ${{ env.E2E_COMMAND }} | |
env: | |
CI: ${{ env.CI }} | |
E2E_URL: ${{ env.E2E_URL }} | |
- uses: actions/upload-artifact@v4 | |
if: always() | |
with: | |
name: playwright-report | |
path: playwright-report/ | |
retention-days: 30 |