Skip to content

Commit

Permalink
Update to v0.15.0 (#40)
Browse files Browse the repository at this point in the history
Co-authored-by: Jordan Martinez <jordanalex.martinez@protonmail.com>
Co-authored-by: Thomas Honeyman <hello@thomashoneyman.com>
  • Loading branch information
3 people committed May 3, 2022
1 parent b4f0ef6 commit e55d1b5
Show file tree
Hide file tree
Showing 10 changed files with 2,126 additions and 104 deletions.
29 changes: 18 additions & 11 deletions .github/workflows/ci.yml
@@ -1,6 +1,9 @@
name: CI

on: [push, pull_request]
on:
push:
branches: [master]
pull_request:

jobs:
build:
Expand All @@ -9,22 +12,26 @@ jobs:
- uses: actions/checkout@v2

- uses: purescript-contrib/setup-purescript@main
with:
purescript: "0.14.2"

- uses: actions/setup-node@v1
- uses: actions/setup-node@v2
with:
node-version: "12"
node-version: "14"

- name: Install dependencies
run: npm install

- name: Build source (spago)
run: spago build

- name: Run tests (spago)
run: spago test

- name: Build source (pulp)
run: |
npm install
npx bower install --production
npx pulp build
- name: Build source
run: npm run-script build

- name: Run tests
- name: Run tests (pulp)
run: |
npx bower install
npm run-script test --if-present
npx pulp test
1 change: 1 addition & 0 deletions .gitignore
Expand Up @@ -4,3 +4,4 @@ output
.psci*
.pulp-cache
.psc-ide-port
/.spago/
19 changes: 9 additions & 10 deletions bower.json
Expand Up @@ -20,17 +20,16 @@
"package.json"
],
"dependencies": {
"purescript-maybe": "^5.0.0",
"purescript-integers": "^5.0.0",
"purescript-strings": "^5.0.0"
"purescript-maybe": "^6.0.0",
"purescript-integers": "^6.0.0",
"purescript-strings": "^6.0.0"
},
"devDependencies": {
"purescript-integers": "^5.0.0",
"purescript-console": "^5.0.0",
"purescript-assert": "^5.0.0",
"purescript-quickcheck": "^7.0.0",
"purescript-quickcheck-laws": "^6.0.0",
"purescript-psci-support": "^5.0.0",
"purescript-effect": "^3.0.0"
"purescript-console": "^6.0.0",
"purescript-assert": "^6.0.0",
"purescript-quickcheck": "^8.0.0",
"purescript-quickcheck-laws": "^7.0.0",
"purescript-psci-support": "^6.0.0",
"purescript-effect": "^4.0.0"
}
}

0 comments on commit e55d1b5

Please sign in to comment.