chore(deps-dev): bump vite from 6.0.2 to 6.0.6 #42
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 tests | |
on: [push] | |
env: | |
PNPM_CACHE_FOLDER: .pnpm-store | |
SKIP_INSTALL_SIMPLE_GIT_HOOKS: 1 # Skip installing simple-git-hooks | |
jobs: | |
tests: | |
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: Cache Cypress binary | |
uses: actions/cache@v4 | |
with: | |
path: ~/.cache/Cypress | |
key: cypress-${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }} | |
- name: Install dependencies | |
run: pnpm install | |
- name: Build Library | |
run: pnpm build | |
- name: Vitest run | |
run: pnpm run test:unit:ci --silent | |
- 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 |