Skip to content

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

chore(deps): update all non-major dependencies

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

Workflow file for this run

name: Node.js CI
on: [push]
jobs:
setup:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/setup
build:
runs-on: ubuntu-latest
needs: [setup]
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/setup
- run: pnpm run lint
- run: pnpm run build
test:
timeout-minutes: 60
needs: [setup]
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
- uses: ./.github/actions/setup
- name: Install Playwright Browsers
run: pnpm exec playwright install chromium --with-deps
- name: Build
run: VITE_IS_TEST=true pnpm run build
- name: Run Playwright tests
run: pnpm test -- --reporter=html
- uses: actions/upload-artifact@0b2256b8c012f0828dc542b3febcab082c67f72b # v4.3.4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 10