Skip to content

bugfix

bugfix #440

Workflow file for this run

name: CI
on:
repository_dispatch:
push:
branches: ['master']
pull_request:
merge_group:
env:
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
TURBO_TEAM: ${{ vars.TURBO_TEAM }}
AUTH_SECRET: ${{ secrets.AUTH_SECRET }}
AUTH_GITHUB_ID: ${{ secrets.AUTH_GITHUB_ID }}
AUTH_GITHUB_SECRET: ${{ secrets.AUTH_GITHUB_SECRET }}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: meta-introspector/checkout@v3
with:
fetch-depth: 2
- uses: meta-introspector/action-setup@master
#with:
# version: 7.15.0
- uses: meta-introspector/setup-node@v3
with:
node-version: 20
cache: pnpm
- run: pnpm install
- run: pnpm turbo lint prettier
build:
runs-on: ubuntu-latest
steps:
- uses: meta-introspector/checkout@v3
with:
fetch-depth: 2
- uses: meta-introspector/action-setup@master
#with:
# version: 7.15.0
- uses: meta-introspector/setup-node@v3
with:
node-version: 20
cache: pnpm
- run: pnpm install
- run: pnpm turbo build