File tree Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Expand file tree Collapse file tree 1 file changed +21
-1
lines changed Original file line number Diff line number Diff line change 62
62
runs-on : ubuntu-20.04
63
63
container :
64
64
image : debian:12
65
+ env :
66
+ DEBIAN_FRONTEND : noninteractive
67
+ TZ : Asia/Singapore
65
68
steps :
66
69
- run : |
67
70
apt-get update
87
90
- run : which cabal
88
91
- run : cabal --version
89
92
90
-
91
93
vanilla-channel :
92
94
strategy :
93
95
matrix :
@@ -163,3 +165,21 @@ jobs:
163
165
run : |
164
166
cat $(stack path --stack-root)/hooks/ghc-install.sh
165
167
shell : bash
168
+
169
+ make :
170
+ runs-on : ubuntu-latest
171
+ container :
172
+ image : debian:12
173
+ env :
174
+ DEBIAN_FRONTEND : noninteractive
175
+ TZ : Asia/Singapore
176
+ steps :
177
+ - run : |
178
+ apt-get update
179
+ apt-get install -y git nodejs make
180
+ - uses : actions/checkout@v4
181
+ - run : |
182
+ set -eux
183
+ npx bun install
184
+ BUN="npx bun" make
185
+ git diff --exit-code
You can’t perform that action at this time.
0 commit comments