We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6a329e9 commit a650e48Copy full SHA for a650e48
1 file changed
.github/workflows/build.yml
@@ -1,6 +1,10 @@
1
name: build
2
3
-on: [push, pull_request]
+on:
4
+ push:
5
+ pull_request:
6
+ schedule:
7
+ - "0 5 * * 1" # At 05:00 UTC every Monday
8
9
jobs:
10
@@ -46,7 +50,9 @@ jobs:
46
50
npm install nan@"$earliest_nan_version"
47
51
48
52
- name: Install dependencies and build
49
- run: npm install
53
+ run: |
54
+ npm install
55
+ npm explain nan
56
57
- name: Run linter
58
run: node node_modules/eslint/bin/eslint .
0 commit comments