We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 56b74d3 commit eb08ee6Copy full SHA for eb08ee6
.github/workflows/ci.yml
@@ -0,0 +1,37 @@
1
+name: CI
2
+
3
+on:
4
+ push:
5
+ branches:
6
+ - master
7
+ - release-*
8
+ pull_request:
9
10
11
12
13
+jobs:
14
+ build:
15
+ runs-on: ubuntu-latest
16
17
+ strategy:
18
+ matrix:
19
+ node-version: [8.x, 10.x, 12.x]
20
21
+ steps:
22
+ - uses: actions/checkout@v1
23
+ with:
24
+ fetch-depth: 5
25
+ - name: Use node version ${{ matrix.node-version }}
26
+ uses: actions/setup-node@v1
27
28
+ node-version: ${{ matrix.node-version }}
29
+ - name: Remove existing TypeScript
30
+ run: |
31
+ npm uninstall typescript --no-save
32
+ npm uninstall tslint --no-save
33
+ - name: npm install and test
34
35
+ npm install
36
+ npm update
37
+ npm test
0 commit comments