File tree 6 files changed +47
-11
lines changed
6 files changed +47
-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
+ - " **"
7
+ push :
8
+ branches :
9
+ - master
10
+ - v0.2
11
+
12
+ jobs :
13
+ build :
14
+ runs-on : ubuntu-20.04
15
+ strategy :
16
+ matrix :
17
+ node : ["12", "14", "16"]
18
+ steps :
19
+ - name : Checkout
20
+ uses : actions/checkout@v3
21
+ - name : Setup Node
22
+ uses : actions/setup-node@v3
23
+ with :
24
+ node-version : ${{ matrix.node }}
25
+ - run : npm install
26
+ - run : npm run build
27
+ - 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 106
106
"browserslist" : [
107
107
" maintained node versions"
108
108
],
109
+ "mocha" : {
110
+ "require" : [
111
+ " ./lib/test/index.js"
112
+ ],
113
+ "spec" : [
114
+ " ./lib/**/*.test.js" ,
115
+ " ./lib/test/**/*.js"
116
+ ]
117
+ },
109
118
"nyc" : {
110
119
"extends" : " @istanbuljs/nyc-config-babel" ,
111
120
"include" : [
You can’t perform that action at this time.
0 commit comments