We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6cbb703 commit 97444b7Copy full SHA for 97444b7
.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: '22'
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