Skip to content

Commit d409a79

Browse files
committed
Perform installation test with new build system
1 parent fda75a6 commit d409a79

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -578,7 +578,7 @@ jobs:
578578
working-directory: ${{ steps.tmp-dir.outputs.path }}
579579

580580
- name: Test installation
581-
run: npx rescript -h && npx rescript legacy build && cat src/Test.res.js
581+
run: npx rescript -h && npx rescript build && cat src/Test.res.js
582582
shell: bash
583583
working-directory: ${{ steps.tmp-dir.outputs.path }}
584584

@@ -633,7 +633,7 @@ jobs:
633633
working-directory: ${{ steps.tmp-dir.outputs.path }}
634634

635635
- name: Test installation
636-
run: pnpm rescript -h && pnpm rescript legacy build && cat src/Test.res.js
636+
run: pnpm rescript -h && pnpm rescript build && cat src/Test.res.js
637637
shell: bash
638638
working-directory: ${{ steps.tmp-dir.outputs.path }}
639639

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
{
2+
"name": "install-test"
3+
}
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
Js.Console.log("Hello, world!")
1+
Console.log("Hello, world!")

0 commit comments

Comments
 (0)