We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9f8d77b commit 04be700Copy full SHA for 04be700
.github/workflows/build.yml
@@ -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
24
25
26
27
28
+ - run: yarn run pack
0 commit comments