-
-
Notifications
You must be signed in to change notification settings - Fork 217
39 lines (30 loc) · 916 Bytes
/
integrate.yaml
File metadata and controls
39 lines (30 loc) · 916 Bytes
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
name: Integrate
on:
push:
branches: [ main, next ]
pull_request:
workflow_dispatch:
permissions:
contents: read
jobs:
code-quality:
runs-on: depot-ubuntu-24.04-arm-4
timeout-minutes: 5
steps:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
- name: Setup pnpm
uses: pnpm/action-setup@41ff72655975bd51cab0327fa583b6e92b6d3061 # v4.2.0
- name: Setup Node.js
uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version-file: ".node-version"
cache: "pnpm"
- name: Setup Biome
uses: biomejs/setup-biome@4c91541eaada48f67d7dbd7833600ce162b68f51 # v2.7.1
- name: Run Biome
run: biome ci
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run tsc
run: pnpm tsc