Skip to content

Merge pull request #214 from DeeCode-inc/dependabot/npm_and_yarn/luci… #9

Merge pull request #214 from DeeCode-inc/dependabot/npm_and_yarn/luci…

Merge pull request #214 from DeeCode-inc/dependabot/npm_and_yarn/luci… #9

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: ${{ github.event_name == 'pull_request' }}
permissions:
contents: read
jobs:
checks:
name: ${{ matrix.name }}
runs-on: ubuntu-latest
strategy:
fail-fast: false
matrix:
include:
- name: biome
command: pnpm ci:biome
- name: typecheck
command: pnpm compile
- name: build
command: pnpm build
steps:
- uses: actions/checkout@v7
- uses: pnpm/action-setup@v6
- uses: actions/setup-node@v7
with:
node-version-file: .nvmrc
cache: pnpm
- run: pnpm install --frozen-lockfile
- run: ${{ matrix.command }}