Skip to content

Merge pull request #153 from iHildy/code-audit #5

Merge pull request #153 from iHildy/code-audit

Merge pull request #153 from iHildy/code-audit #5

Workflow file for this run

name: CI
on:
push:
branches: ["main", "release/*"]
pull_request:
branches: ["main", "release/*"]
jobs:
lint-typecheck-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v4
with:
version: 9
- uses: actions/setup-node@v4
with:
node-version: 18
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Lint
run: pnpm lint
env:
SKIP_ENV_VALIDATION: true
- name: Typecheck
run: pnpm type-check
env:
SKIP_ENV_VALIDATION: true
- name: Build
run: pnpm build:selfhosted
env:
SKIP_ENV_VALIDATION: true