Skip to content

chore(deps): update all non-major dependencies (#58) #298

chore(deps): update all non-major dependencies (#58)

chore(deps): update all non-major dependencies (#58) #298

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths:
- 'src/**'
- 'tests/**'
- 'package.json'
- 'pnpm-lock.yaml'
- 'vite.config.ts'
- 'vitest.config.ts'
- 'playwright.config.ts'
- 'tsconfig*.json'
- '.github/workflows/main.yml'
pull_request:
paths:
- 'src/**'
- 'tests/**'
- 'package.json'
- 'pnpm-lock.yaml'
- 'vite.config.ts'
- 'vitest.config.ts'
- 'playwright.config.ts'
- 'tsconfig*.json'
- '.github/workflows/main.yml'
concurrency:
group: ${{ github.workflow }}-${{ github.head_ref || github.run_id }}
cancel-in-progress: true
jobs:
tests:
runs-on: ubuntu-latest
env:
PLAYWRIGHT_BROWSERS_PATH: 0
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
with:
run_install: false
- uses: actions/setup-node@v7
with:
node-version: 24
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type Check
run: pnpm type-check
# - name: Install Playwright browsers
# run: npx playwright install --with-deps
# - name: Run e2e tests
# run: |
# pnpm build
# pnpm test:ci-e2e
# - name: Run unit tests
# run: pnpm test:ci
# - name: Coverage
# uses: davelosert/vitest-coverage-report-action@v2.5.0
# if: ${{ always() }}