Skip to content

Commit e55d1b5

Browse files
sigma-andexJordanMartinezthomashoneyman
authored
Update to v0.15.0 (#40)
Co-authored-by: Jordan Martinez <[email protected]> Co-authored-by: Thomas Honeyman <[email protected]>
1 parent b4f0ef6 commit e55d1b5

File tree

10 files changed

+2126
-104
lines changed

10 files changed

+2126
-104
lines changed

.github/workflows/ci.yml

+18-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,9 @@
11
name: CI
22

3-
on: [push, pull_request]
3+
on:
4+
push:
5+
branches: [master]
6+
pull_request:
47

58
jobs:
69
build:
@@ -9,22 +12,26 @@ jobs:
912
- uses: actions/checkout@v2
1013

1114
- uses: purescript-contrib/setup-purescript@main
12-
with:
13-
purescript: "0.14.2"
1415

15-
- uses: actions/setup-node@v1
16+
- uses: actions/setup-node@v2
1617
with:
17-
node-version: "12"
18+
node-version: "14"
1819

1920
- name: Install dependencies
21+
run: npm install
22+
23+
- name: Build source (spago)
24+
run: spago build
25+
26+
- name: Run tests (spago)
27+
run: spago test
28+
29+
- name: Build source (pulp)
2030
run: |
21-
npm install
2231
npx bower install --production
32+
npx pulp build
2333
24-
- name: Build source
25-
run: npm run-script build
26-
27-
- name: Run tests
34+
- name: Run tests (pulp)
2835
run: |
2936
npx bower install
30-
npm run-script test --if-present
37+
npx pulp test

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -4,3 +4,4 @@ output
44
.psci*
55
.pulp-cache
66
.psc-ide-port
7+
/.spago/

bower.json

+9-10
Original file line numberDiff line numberDiff line change
@@ -20,17 +20,16 @@
2020
"package.json"
2121
],
2222
"dependencies": {
23-
"purescript-maybe": "^5.0.0",
24-
"purescript-integers": "^5.0.0",
25-
"purescript-strings": "^5.0.0"
23+
"purescript-maybe": "^6.0.0",
24+
"purescript-integers": "^6.0.0",
25+
"purescript-strings": "^6.0.0"
2626
},
2727
"devDependencies": {
28-
"purescript-integers": "^5.0.0",
29-
"purescript-console": "^5.0.0",
30-
"purescript-assert": "^5.0.0",
31-
"purescript-quickcheck": "^7.0.0",
32-
"purescript-quickcheck-laws": "^6.0.0",
33-
"purescript-psci-support": "^5.0.0",
34-
"purescript-effect": "^3.0.0"
28+
"purescript-console": "^6.0.0",
29+
"purescript-assert": "^6.0.0",
30+
"purescript-quickcheck": "^8.0.0",
31+
"purescript-quickcheck-laws": "^7.0.0",
32+
"purescript-psci-support": "^6.0.0",
33+
"purescript-effect": "^4.0.0"
3534
}
3635
}

0 commit comments

Comments
 (0)