Skip to content

Update github-actions #147

Update github-actions

Update github-actions #147

Workflow file for this run

name: Tests
on:
push:
branches: [main]
pull_request:
jobs:
biome:
name: Biome
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Setup Biome
uses: biomejs/setup-biome@2b2c8ac2a6846c3a5607664ce19af3318c6766fe # v2.2.0
- name: Run Biome
run: biome ci .
typescript:
name: TypeScript
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4.1.6
- name: Install pnpm
uses: pnpm/action-setup@fe02b34f77f8bc703788d5817da081398fad5dd2 # v4.0.0
- name: Install Node 20
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
with:
node-version: 20
cache: 'pnpm'
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run TypeScript compiler
run: pnpm run typecheck