File tree Expand file tree Collapse file tree 6 files changed +48
-11
lines changed
Expand file tree Collapse file tree 6 files changed +48
-11
lines changed Original file line number Diff line number Diff line change 1+ * @ basicdays
Original file line number Diff line number Diff line change 1+ version : 2
2+
3+ updates :
4+ # see: https://docs.github.com/en/free-pro-team@latest/github/administering-a-repository/keeping-your-actions-up-to-date-with-github-dependabot
5+ - package-ecosystem : github-actions
6+ directory : " /"
7+ schedule :
8+ interval : daily
9+ reviewers :
10+ - basicdays
Original file line number Diff line number Diff line change 1+ name : " build"
2+
3+ on :
4+ pull_request :
5+ branches :
6+ - master
7+ - v0.2
8+ push :
9+ branches :
10+ - master
11+ - v0.2
12+
13+ jobs :
14+ build :
15+ runs-on : ubuntu-20.04
16+ strategy :
17+ matrix :
18+ node : ["12", "14", "16"]
19+ steps :
20+ - name : Checkout
21+ uses : actions/checkout@v3
22+ - name : Setup Node
23+ uses : actions/setup-node@v3
24+ with :
25+ node-version : ${{ matrix.node }}
26+ - run : npm install
27+ - run : npm run build
28+ - run : npm test
Load Diff This file was deleted.
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 106106 "browserslist" : [
107107 " maintained node versions"
108108 ],
109+ "mocha" : {
110+ "require" : [
111+ " ./lib/test/index.js"
112+ ],
113+ "spec" : [
114+ " ./lib/**/*.test.js" ,
115+ " ./lib/test/**/*.js"
116+ ]
117+ },
109118 "nyc" : {
110119 "extends" : " @istanbuljs/nyc-config-babel" ,
111120 "include" : [
You can’t perform that action at this time.
0 commit comments