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

Commit d9ddf92

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

File tree

1 file changed

+35
-0
lines changed

1 file changed

+35
-0
lines changed

.github/workflows/build.yaml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
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: Install PNPM
24+
run: npm install -g pnpm@9.4.0
25+
shell: bash
26+
27+
- name: Install dependencies
28+
run: pnpm install --frozen-lockfile --strict-peer-dependencies
29+
shell: bash
30+
31+
- name: Build workspace
32+
run: pnpm run build
33+
shell: bash
34+
35+

0 commit comments

Comments
 (0)