Skip to content

build(deps-dev): bump oxlint-tsgolint from 0.11.1 to 0.17.1 #88

build(deps-dev): bump oxlint-tsgolint from 0.11.1 to 0.17.1

build(deps-dev): bump oxlint-tsgolint from 0.11.1 to 0.17.1 #88

Workflow file for this run

name: CI
on:
pull_request:
push:
branches: [main]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup
- name: Security Audit
run: pnpm audit --audit-level=moderate
- name: Run tests
run: pnpm test
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup
- name: Run lint check
run: pnpm lint:check
check-types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup
- name: Run typecheck
run: pnpm typecheck
check-format:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
- name: Setup Environment
uses: ./.github/actions/setup
- name: Run format check
run: pnpm format:check