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 de9dc67 commit 7601ff4Copy full SHA for 7601ff4
.github/workflows/tests.yml
@@ -3,14 +3,16 @@ name: Tests
3
on:
4
push:
5
branches:
6
- - master
7
- - develop
+ - '**'
8
pull_request:
9
10
- master
11
paths:
12
- '**/*.js'
13
- 'package.json'
+ - '**/*.njk'
14
+ - '**/*.yml'
15
+ - 'tests/**/*.html'
16
17
jobs:
18
tests:
@@ -32,11 +34,9 @@ jobs:
32
34
with:
33
35
path: node_modules
36
key: ${{ matrix.os }}-node-${{ matrix.node-version }}-${{ hashFiles('**/package.json') }}
- restore-keys: |
- ${{ matrix.os }}-node-${{ matrix.node-version }}-
37
- run: npm install
38
if: steps.cache-node-modules.outputs.cache-hit != 'true'
39
- run: npm test
40
- name: Report coverage
41
if: success()
42
- run: codecov/codecov-action@v1
+ uses: codecov/codecov-action@v1
0 commit comments