Skip to content

Bump typescript from 5.5.4 to 5.6.3 #256

Bump typescript from 5.5.4 to 5.6.3

Bump typescript from 5.5.4 to 5.6.3 #256

Workflow file for this run

name: Status Checks
on:
push:
jobs:
biome:
runs-on: ubuntu-latest
name: Biome Lint
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version: 22
cache: "yarn"
- run: yarn --immutable
- run: yarn typecheck
test:
runs-on: ubuntu-latest
name: Tests
steps:
- uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # 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@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version: 22
cache: "yarn"
- run: yarn --immutable
- run: yarn build