Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update to v0.15.0 #40

Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
29 changes: 18 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -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
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,4 @@ output
.psci*
.pulp-cache
.psc-ide-port
/.spago/
19 changes: 9 additions & 10 deletions bower.json
Original file line number Diff line number Diff line change
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"
}
}
Loading