We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7e942c6 commit f6b52a3Copy full SHA for f6b52a3
.github/workflows/check.yml
@@ -89,6 +89,31 @@ jobs:
89
moon test -C examples --test-failure-json
90
moon test -C stdio_test --test-failure-json
91
92
+ js-build:
93
+ runs-on: ubuntu-latest
94
+ timeout-minutes: 10
95
+ steps:
96
+ - uses: actions/checkout@v4
97
+
98
+ - name: install
99
+ run: |
100
+ curl -fsSL https://cli.moonbitlang.com/install/unix.sh | bash
101
+ echo "$HOME/.moon/bin" >> $GITHUB_PATH
102
103
+ - name: moon version
104
105
+ moon version --all
106
+ moonrun --version
107
108
+ - name: moon check
109
110
+ moon check --target js
111
112
+ - name: moon test
113
114
+ moon test --release --target js
115
+ moon test --target js
116
117
moon-format:
118
runs-on: ubuntu-latest
119
timeout-minutes: 10
0 commit comments