-
Notifications
You must be signed in to change notification settings - Fork 20
41 lines (34 loc) · 873 Bytes
/
lint.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
name: lint
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
run-lint:
timeout-minutes: 10
runs-on: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4
- name: Setup pnpm
uses: pnpm/action-setup@v4
- name: Setup node.js
uses: actions/setup-node@0a44ba7841725637a19e28fa30b79a866c81b0a6 # v4
with:
node-version-file: ".nvmrc"
cache: pnpm
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Run secretlint
run: pnpm run secretlint
- name: Run format
run: pnpm run format
- name: Run type-check
run: pnpm exec turbo run type-check
- name: Run lint
run: pnpm exec turbo run lint