Skip to content
This repository was archived by the owner on Mar 17, 2026. It is now read-only.

Commit b0fcc54

Browse files
committed
Add build step to CI
1 parent 6d54e0b commit b0fcc54

File tree

1 file changed

+39
-0
lines changed

1 file changed

+39
-0
lines changed

.github/workflows/build.yaml

Lines changed: 39 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,39 @@
1+
name: Build
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- "**"
7+
push:
8+
branches:
9+
- "**"
10+
11+
permissions:
12+
contents: read
13+
14+
jobs:
15+
build:
16+
runs-on: ubuntu-latest
17+
steps:
18+
- name: Checkout repository
19+
uses: actions/checkout@0ad4b8fadaa221de15dcec353f45205ec38ea70b # v4.1.4
20+
with:
21+
fetch-depth: 0
22+
23+
- name: Setup Node 20.x
24+
uses: actions/setup-node@v3
25+
with:
26+
node-version: 20.19
27+
28+
- name: Setup pnpm
29+
uses: pnpm/action-setup@v4
30+
with:
31+
version: 9.4.0
32+
33+
- name: Install dependencies
34+
run: pnpm install --frozen-lockfile --strict-peer-dependencies
35+
36+
- name: Build workspace
37+
run: pnpm run build
38+
39+

0 commit comments

Comments
 (0)