We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent ec39659 commit ae9d36cCopy full SHA for ae9d36c
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+name: Run Tests
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - main
7
8
+jobs:
9
+ test:
10
+ runs-on: ubuntu-18.04
11
+ steps:
12
+ - uses: actions/checkout@v3
13
14
+ - name: Setup Node
15
+ uses: actions/setup-node@v3
16
+ with:
17
+ node-version: "18"
18
+ cache: 'yarn'
19
+ cache-dependency-path: '**/yarn.lock'
20
21
+ - name: Install dependencies
22
+ run: yarn install --frozen-lockfile
23
24
+ - name: Build
25
+ run: yarn build
26
27
+ - name: Run Tests
28
+ run: yarn test
.travis.yml
0 commit comments