Skip to content

Commit a650e48

Browse files
committed
Add scheduled CI job
1 parent 6a329e9 commit a650e48

1 file changed

Lines changed: 8 additions & 2 deletions

File tree

.github/workflows/build.yml

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,10 @@
11
name: build
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
pull_request:
6+
schedule:
7+
- "0 5 * * 1" # At 05:00 UTC every Monday
48

59
jobs:
610

@@ -46,7 +50,9 @@ jobs:
4650
npm install nan@"$earliest_nan_version"
4751
4852
- name: Install dependencies and build
49-
run: npm install
53+
run: |
54+
npm install
55+
npm explain nan
5056

5157
- name: Run linter
5258
run: node node_modules/eslint/bin/eslint .

0 commit comments

Comments
 (0)