Skip to content

chore(deps-dev): bump the dev-minor-and-patch group across 1 director… #40

chore(deps-dev): bump the dev-minor-and-patch group across 1 director…

chore(deps-dev): bump the dev-minor-and-patch group across 1 director… #40

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
bundler: [webpack, rspack, vite]
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npx turbo run build:${{ matrix.bundler }}
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npx oxlint .
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npx tsc --noEmit -p packages/app-people-list/tsconfig.json
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- uses: actions/setup-node@v6
with:
node-version-file: '.nvmrc'
cache: 'npm'
- run: npm ci
- run: npm test