We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 5147f3b + 5baca26 commit b08d213Copy full SHA for b08d213
.github/workflows/ci.yml
@@ -0,0 +1,18 @@
1
+name: CI
2
+on:
3
+ push:
4
+ branches:
5
+ - main
6
+ pull_request:
7
+
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-latest
11
+ steps:
12
+ - uses: actions/checkout@v2
13
+ - uses: actions/setup-node@v2
14
+ with:
15
+ node-version: '16'
16
+ cache: 'npm'
17
+ - run: npm install
18
+ - run: npm test
.node-version
@@ -0,0 +1 @@
+v16.13.2
0 commit comments