Skip to content

Update dependency vite to v6 #286

Update dependency vite to v6

Update dependency vite to v6 #286

Workflow file for this run

name: Status Checks
on:
push:
jobs:
biome:
runs-on: ubuntu-latest
name: Biome Lint
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version: 22
cache: "yarn"
- run: yarn --immutable
- run: yarn lint:ci
tsc:
runs-on: ubuntu-latest
name: Typescript
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version: 22
cache: "yarn"
- run: yarn --immutable
- run: yarn typecheck
test:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version: 22
cache: "yarn"
- run: yarn --immutable
- run: yarn test
build:
runs-on: ubuntu-latest
name: Vite Build
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
- uses: actions/setup-node@39370e3970a6d050c480ffad4ff0ed4d3fdee5af # v4
with:
node-version: 22
cache: "yarn"
- run: yarn --immutable
- run: yarn build