File tree Expand file tree Collapse file tree 3 files changed +59
-23
lines changed Expand file tree Collapse file tree 3 files changed +59
-23
lines changed Original file line number Diff line number Diff line change 1+ # To get started with Dependabot version updates, you'll need to specify which
2+ # package ecosystems to update and where the package manifests are located.
3+ # Please see the documentation for all configuration options:
4+ # https://help.github.com/github/administering-a-repository/configuration-options-for-dependency-updates
5+
6+ version : 2
7+ updates :
8+ - package-ecosystem : " npm" # See documentation for possible values
9+ directory : " /" # Location of package manifests
10+ schedule :
11+ interval : " daily"
12+ open-pull-requests-limit : 10
13+
14+ - package-ecosystem : " github-actions"
15+ directory : " /"
16+ schedule :
17+ interval : " daily"
18+ open-pull-requests-limit : 10
Original file line number Diff line number Diff line change 1+ name : Tests
2+
3+ on :
4+ push :
5+ branches :
6+ - next
7+ pull_request :
8+ branches :
9+ - ' *'
10+
11+ env :
12+ CI : true
13+
14+ jobs :
15+ test :
16+ strategy :
17+ matrix :
18+ os : [ubuntu-latest, macos-latest, windows-latest]
19+ node-version : [10.x, 12.x, 14.x]
20+
21+ runs-on : ${{ matrix.os }}
22+
23+ steps :
24+ - uses : actions/checkout@v2
25+
26+ - name : Use Node.js ${{ matrix.node-version }}
27+ uses : actions/setup-node@v2.1.4
28+ with :
29+ node-version : ${{ matrix.node-version }}
30+
31+ - name : Install
32+ run : npm ci
33+
34+ - name : Lint
35+ run : npm run lint
36+
37+ - name : Run tests
38+ run : npm test
39+
40+ - name : Coverage report
41+ uses : codecov/codecov-action@v1
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments