Skip to content

Commit 04be700

Browse files
committed
build
1 parent 9f8d77b commit 04be700

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/build.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Build
2+
on:
3+
push:
4+
branches:
5+
- main
6+
pull_request:
7+
jobs:
8+
test:
9+
name: Test
10+
runs-on: ubuntu-latest
11+
strategy:
12+
fail-fast: true
13+
steps:
14+
- uses: actions/checkout@v3
15+
- uses: actions/setup-node@v3
16+
with:
17+
node-version: 20
18+
- run: yarn install --immutable
19+
- run: yarn run build
20+
- run: yarn run check
21+
pack:
22+
name: Pack
23+
runs-on: ubuntu-latest
24+
steps:
25+
- uses: actions/checkout@v3
26+
- uses: actions/setup-node@v3
27+
- run: yarn install --immutable
28+
- run: yarn run pack

0 commit comments

Comments
 (0)