Skip to content

Commit 7601ff4

Browse files
committed
Fixup github actions workflow file
1 parent de9dc67 commit 7601ff4

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

.github/workflows/tests.yml

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,16 @@ name: Tests
33
on:
44
push:
55
branches:
6-
- master
7-
- develop
6+
- '**'
87
pull_request:
98
branches:
109
- master
1110
paths:
1211
- '**/*.js'
1312
- 'package.json'
13+
- '**/*.njk'
14+
- '**/*.yml'
15+
- 'tests/**/*.html'
1416

1517
jobs:
1618
tests:
@@ -32,11 +34,9 @@ jobs:
3234
with:
3335
path: node_modules
3436
key: ${{ matrix.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}
35-
restore-keys: |
36-
${{ matrix.os }}-node-${{ matrix.node-version }}-
3737
- run: npm install
3838
if: steps.cache-node-modules.outputs.cache-hit != 'true'
3939
- run: npm test
4040
- name: Report coverage
4141
if: success()
42-
run: codecov/codecov-action@v1
42+
uses: codecov/codecov-action@v1

0 commit comments

Comments
 (0)