We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 1ea37cc commit e87641bCopy full SHA for e87641b
1 file changed
.github/workflows/dashboard.yml
@@ -30,6 +30,13 @@ jobs:
30
if: github.event.action != 'closed'
31
run: npm install --no-save purescript@0.15.15 spago@1.0.3 esbuild
32
33
+ # TODO: this is temporary until we fix a bug in spago for bundling single packages:
34
+ # there is a `purs graph` call that fails when doing that because it's trying to use
35
+ # all the dependencies of the package, which might not be there. So we build everything.
36
+ - name: Build whole repo
37
+ if: github.event.action != 'closed'
38
+ run: spago build
39
+
40
- name: Build dashboard
41
42
run: npm run dashboard:build
0 commit comments