Skip to content

fix(deps): update all dependencies (#28) #177

fix(deps): update all dependencies (#28)

fix(deps): update all dependencies (#28) #177

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths:
- 'src/**'
- 'tests/**'
- 'pnpm-lock.yaml'
- '.github/workflows/main.yml'
pull_request:
paths:
- 'src/**'
- 'tests/**'
- 'pnpm-lock.yaml'
- '.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@v6
- uses: actions/cache@v5
with:
path: /home/runner/.local/share/pnpm/store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v4
with:
version: 10
run_install: true
- uses: actions/setup-node@v6
with:
node-version: 24
cache: 'pnpm'
- 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() }}