chore(deps-dev): bump the security-updates group across 1 directory w… #80
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: Run E2E Tests | |
on: [push] | |
env: | |
PNPM_CACHE_FOLDER: .pnpm-store | |
SKIP_INSTALL_SIMPLE_GIT_HOOKS: 1 # Skip installing simple-git-hooks | |
jobs: | |
test: | |
name: E2E Test | |
runs-on: ubuntu-24.04 | |
strategy: | |
matrix: | |
node-version: [20] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Setup pnpm | |
uses: pnpm/action-setup@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: pnpm | |
- name: Set up Cypress binary cache | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/Cypress | |
key: cypress-${{ runner.os }}-cypress-${{ hashFiles('pnpm-lock.yaml') }} | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build lib | |
run: pnpm run build | |
- name: Cypress run | |
run: pnpm run test:e2e | |
- name: Upload Cypress artifacts | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: cypress-artifacts | |
path: | | |
cypress/screenshots | |
cypress/videos |