Skip to content

Commit 3cbcf62

Browse files
add an pnpm run build action
1 parent 15299cc commit 3cbcf62

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/build.yml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Build
2+
3+
on:
4+
- push
5+
- pull_request
6+
7+
jobs:
8+
quality:
9+
runs-on: ubuntu-latest
10+
steps:
11+
- name: Checkout
12+
uses: actions/checkout@v4
13+
- uses: pnpm/action-setup@v4
14+
with:
15+
version: latest
16+
run_install: true
17+
- name: Run Build
18+
run: pnpm run build

0 commit comments

Comments
 (0)