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 e546b67 commit 1340a4fCopy full SHA for 1340a4f
.github/workflows/ci.yml
@@ -16,7 +16,7 @@ jobs:
16
- name: Set up PureScript toolchain
17
uses: purescript-contrib/setup-purescript@main
18
with:
19
- purescript: "0.14.0"
+ purescript: "0.15.0"
20
21
- name: Cache PureScript dependencies
22
uses: actions/cache@v2
@@ -51,3 +51,6 @@ jobs:
51
52
- name: Build the project
53
run: npm run build
54
+
55
+ - name: Make the examples
56
+ run: make examples
Makefile
@@ -3,7 +3,7 @@ all: build examples
3
build: bower_components node_modules
4
npx pulp build
5
6
-examples: bower_components node_modules
+examples: node_modules
7
find examples -maxdepth 2 -type f -iname makefile -execdir make \;
8
9
bower_components: node_modules
0 commit comments