We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 67bc96f commit c7c78c9Copy full SHA for c7c78c9
.github/workflows/check-build.yml
@@ -0,0 +1,22 @@
1
+name: Check JS Files
2
+
3
+on:
4
+ push:
5
+ branches: [main]
6
+ pull_request:
7
8
9
+jobs:
10
+ check:
11
+ runs-on: ubuntu-latest
12
13
+ steps:
14
+ - uses: actions/checkout@v3
15
+ - name: Use Node.js 19
16
+ uses: actions/setup-node@v3
17
+ with:
18
+ node-version: 19
19
+ - run: npm install
20
+ - run: npm run build
21
+ - name: JS Files Changed
22
+ run: git diff --exit-code
test/ArrayTests.mjs
@@ -450,7 +450,7 @@ Test.run([
450
Test.run([
451
[
452
"ArrayTests.res",
453
- 109,
+ 112,
454
20,
455
39
456
],
@@ -464,7 +464,7 @@ Test.run([
464
465
466
467
- 110,
+ 113,
468
469
34
470
0 commit comments