We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 60b143b commit 5388f7cCopy full SHA for 5388f7c
.github/workflows/ci.yml
@@ -0,0 +1,36 @@
1
+name: 'ci'
2
+on:
3
+ push:
4
+ branches:
5
+ - '**'
6
+ paths-ignore:
7
+ - README.md
8
+ pull_request:
9
10
11
+jobs:
12
+ test:
13
+ runs-on: ${{ matrix.os }}
14
+ strategy:
15
+ fail-fast: false
16
+ matrix:
17
+ os:
18
+ - ubuntu-latest
19
+ - macos-latest
20
+ - windows-latest
21
+ node-version:
22
+ - 16
23
+ name: Node ${{ matrix.node-version }} on ${{ matrix.os }}
24
+ steps:
25
+ - uses: actions/checkout@v2
26
+ with:
27
+ submodules: 'recursive'
28
+ - uses: pnpm/action-setup@v2
29
30
+ version: 7
31
+ - uses: actions/setup-node@v2
32
33
+ node-version: ${{ matrix.node-version }}
34
+ cache: 'pnpm'
35
+ - run: pnpm install
36
+ - run: pnpm test
0 commit comments