We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ffa4ad2 commit bcad238Copy full SHA for bcad238
.github/workflows/build.yml
@@ -0,0 +1,33 @@
1
+name: ci
2
+on:
3
+ pull_request:
4
+ push:
5
+ branches: [main]
6
+
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: hmarr/debug-action@v2
12
+ - uses: actions/checkout@v3
13
+ - uses: actions/setup-node@v3
14
+ with:
15
+ cache: yarn
16
+ node-version-file: '.nvmrc'
17
+ - name: Install packages
18
+ run: yarn --immutable
19
+ - name: Build library
20
+ run: yarn build
21
+ unit:
22
23
24
25
26
27
28
29
30
31
32
+ - name: Jest
33
+ run: yarn test
.nvmrc
@@ -0,0 +1 @@
+v14
0 commit comments