We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 494dc76 commit c92d55fCopy full SHA for c92d55f
.github/workflows/ci.yml
@@ -19,31 +19,27 @@ env:
19
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
20
21
jobs:
22
- lint:
+ check:
23
runs-on: ubuntu-latest
24
steps:
25
- uses: actions/checkout@v4
26
27
- name: Setup
28
uses: ./tooling/github/setup
29
30
- - name: Copy env
31
- shell: bash
32
- run: cp .env.example .env
+ - name: Check (lint and format)
+ run: pnpm check
33
34
- - name: Lint
35
- run: pnpm lint && pnpm lint:ws
36
-
37
- format:
+ build:
38
39
40
41
42
43
44
45
- - name: Format
46
- run: pnpm format
+ - name: Build
+ run: pnpm build
47
48
typecheck:
49
0 commit comments