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 72ddafb commit e25b222Copy full SHA for e25b222
.circleci/config.yml
.github/workflows/ci.yml
@@ -0,0 +1,27 @@
1
+name: 'ci'
2
+on:
3
+ push:
4
+ branches:
5
+ - master
6
+ pull_request:
7
8
9
+jobs:
10
+ unit-test:
11
+ runs-on: ubuntu-latest
12
+ steps:
13
+ - uses: actions/checkout@v2
14
+
15
+ - name: Install pnpm
16
+ uses: pnpm/action-setup@v2
17
18
+ - name: Set node version to 16
19
+ uses: actions/setup-node@v2
20
+ with:
21
+ node-version: 16
22
+ cache: 'pnpm'
23
24
+ - run: pnpm install
25
26
+ - name: Run unit tests
27
+ run: pnpm run test
0 commit comments