Skip to content

update lucia

update lucia #99

Workflow file for this run

name: Type check and lint
on: [pull_request]
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
permissions:
contents: read
jobs:
typecheck-and-lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: pnpm/action-setup@v2
with:
version: 9
- uses: actions/setup-node@v3
with:
node-version: 20.x
cache: "pnpm"
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Type check and lint
run: pnpm run typecheck && pnpm run lint
env:
SKIP_ENV_VALIDATION: true