We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent da1d7ea commit 8c625ddCopy full SHA for 8c625dd
.github/workflows/ci.yml
@@ -57,9 +57,6 @@ jobs:
57
env:
58
RESCRIPT_FORCE_REBUILD: 1
59
60
- - name: Check format
61
- run: npm run checkFormat
62
-
63
- name: Run tests
64
if: runner.os != 'Windows'
65
run: opam exec -- node scripts/ciTest.js -all
scripts/ciTest.js
@@ -146,10 +146,18 @@ function runTests() {
146
}
147
148
149
+function checkFormat() {
150
+ cp.execSync("npm run checkFormat", {
151
+ cwd: path.join(__dirname, ".."),
152
+ stdio: [0, 1, 2],
153
+ });
154
+}
155
+
156
function main() {
157
try {
158
init();
159
runTests();
160
+ checkFormat();
161
} catch (err) {
162
console.error(err);
163
process.exit(2);
0 commit comments