Skip to content

chore(deps): update all dependencies #337

chore(deps): update all dependencies

chore(deps): update all dependencies #337

Workflow file for this run

name: CI
on:
push:
branches:
- main
paths:
- 'src/**'
- 'tests/**'
- 'yarn.lock'
- '.github/workflows/main.yml'
pull_request:
paths:
- 'src/**'
- 'tests/**'
- 'yarn.lock'
- '.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@v3
- uses: actions/cache@v3
with:
path: /home/runner/.local/share/pnpm/store
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-
- uses: pnpm/action-setup@v2
with:
version: 8
run_install: true
- uses: actions/setup-node@v3
with:
node-version: 18
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.1.0
if: ${{ always() }}
# with:
# vite-config-path: ./vite.config.ts