Skip to content

build: devEngines and TypeScript 6 #9

build: devEngines and TypeScript 6

build: devEngines and TypeScript 6 #9

Workflow file for this run

name: Test
on: push
permissions:
contents: read
jobs:
style:
name: Styling
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: biomejs/setup-biome@v2
- name: Run Biome
run: biome ci --reporter=github
typescript:
name: TypeScript
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Install pnpm
uses: pnpm/action-setup@v6
- name: Install Node.js
uses: actions/setup-node@v6
with:
cache: pnpm
node-version-file: package.json
- name: Install dependencies
run: pnpm install
- name: Validate TypeScript
run: pnpm run test