We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1e4de27 commit 0e81dc0Copy full SHA for 0e81dc0
.github/workflows/main.yml renamed to .github/workflows/main.yml
@@ -2,9 +2,9 @@ name: CI
2
3
on:
4
push:
5
- branches: [ master ]
+ branches: [master]
6
pull_request:
7
8
9
jobs:
10
setup:
@@ -32,7 +32,6 @@ jobs:
32
mkdir package-temp-dir
33
fi
34
cp package-lock.json package-temp-dir
35
-
36
- name: cache node_modules
37
id: node_modules_cache_id
38
uses: actions/cache@v2
@@ -43,7 +42,7 @@ jobs:
43
42
- name: install
44
if: steps.node_modules_cache_id.outputs.cache-hit != 'true'
45
run: npm ci
46
+
47
lint:
48
runs-on: ubuntu-latest
49
steps:
@@ -66,7 +65,7 @@ jobs:
66
65
run: npm run lint
67
68
needs: setup
69
70
compile:
71
72
@@ -89,7 +88,7 @@ jobs:
89
88
run: npm run compile
90
91
92
93
coverage:
94
95
0 commit comments