Skip to content

Commit dac695d

Browse files
committed
cleanup
1 parent 6599661 commit dac695d

3 files changed

Lines changed: 6 additions & 2 deletions

File tree

.github/workflows/test.yml

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -108,3 +108,6 @@ jobs:
108108
npm run test:build -- --diff="${{ github.event.before }}...${{ github.event.after }}"
109109
fi
110110
111+
- name: Run License Checks
112+
run: node run tests:license
113+

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
"test:v8": "npm run test:prepare && node tests/run-shell.mjs --shell v8",
3333
"test:jsc": "npm run test:prepare && node tests/run-shell.mjs --shell jsc",
3434
"test:spidermonkey": "npm run test:prepare && node tests/run-shell.mjs --shell spidermonkey",
35-
"test:build": "npm run test:prepare && node tests/run-build.mjs"
35+
"test:build": "npm run test:prepare && node tests/run-build.mjs",
36+
"test:license": "npm run test:prepare && node tests/run-license.mjs"
3637
},
3738
"devDependencies": {
3839
"@actions/core": "^1.11.1",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@ async function checkLicenses() {
9191
}
9292
process.exit(1);
9393
} else {
94-
logInfo("All files have license headers.");
94+
logInfo(" ");
9595
}
9696
}
9797

0 commit comments

Comments
 (0)