We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 035b4ea + ffe3259 commit 62bfb3fCopy full SHA for 62bfb3f
.github/workflows/ci.yaml
@@ -1,25 +1,29 @@
1
name: ci
2
-
3
on:
4
push:
5
branches: [main]
6
pull_request:
7
8
9
jobs:
10
check:
11
runs-on: ubuntu-latest
12
steps:
13
- uses: actions/checkout@v4
+
14
- uses: pnpm/action-setup@v3
15
with:
16
version: 9.4.0
17
+ - uses: actions/setup-node@v4
18
+ with:
19
+ node-version: '23'
20
+ cache: 'pnpm'
21
22
- name: Install dependencies
23
run: pnpm i
24
25
- name: Run Prettier
26
run: pnpm run prettier --check .
27
28
- name: Build packages
29
run: pnpm run build
0 commit comments