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 674680f commit 1ca7c1dCopy full SHA for 1ca7c1d
.circleci/config.yml
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: 'ci'
2
+on:
3
+ push:
4
+ branches:
5
+ - '**'
6
+ pull_request:
7
8
+ - main
9
+
10
+permissions:
11
+ contents: read # to fetch code (actions/checkout)
12
13
+jobs:
14
+ test:
15
+ runs-on: ubuntu-latest
16
+ steps:
17
+ - uses: actions/checkout@v2
18
19
+ - name: Set node version to 16
20
+ uses: actions/setup-node@v2
21
+ with:
22
+ node-version: 16
23
24
+ - name: Install deps
25
+ uses: bahmutov/npm-install@v1
26
27
+ - name: Run tests
28
+ run: npm test
0 commit comments