Skip to content

Commit 052ac5e

Browse files
authored
ci: add build job (#67)
Closes #66
1 parent be5d4c3 commit 052ac5e

1 file changed

Lines changed: 21 additions & 0 deletions

File tree

.github/workflows/build.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
name: build
2+
on:
3+
pull_request:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build:
10+
runs-on: ubuntu-24.04
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: pnpm/action-setup@v4
14+
- name: Setup Node
15+
uses: actions/setup-node@v4
16+
with:
17+
node-version: 18
18+
cache: "pnpm"
19+
- name: Install Node Dependencies
20+
run: pnpm install
21+
- run: pnpm run build

0 commit comments

Comments
 (0)