Skip to content

Commit

Permalink
Update for PureScript 0.15 (#14)
Browse files Browse the repository at this point in the history
* Update for PureScript 0.15

* Update bower.json
  • Loading branch information
thomashoneyman authored Apr 28, 2022
1 parent 7f0b52f commit c735467
Show file tree
Hide file tree
Showing 5 changed files with 41 additions and 23 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: CI

on:
push:
branches: [master]
pull_request:

jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2

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

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

- name: Install dependencies
run: |
npm install -g bower
npm install
bower install --production
- name: Build source
run: npm run-script build

- name: Run tests
run: |
bower install
npm run-script test --if-present
2 changes: 1 addition & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
/.*
!/.gitignore
!/.travis.yml
!/.github
/bower_components/
/node_modules/
/output/
16 changes: 0 additions & 16 deletions .travis.yml

This file was deleted.

8 changes: 4 additions & 4 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -7,9 +7,9 @@
},
"ignore": ["**/.*", "node_modules", "bower_components", "output"],
"dependencies": {
"purescript-prelude": "^5.0.0",
"purescript-halogen-vdom": "^7.0.0",
"purescript-ordered-collections": "^2.0.0",
"purescript-foreign": "^6.0.0"
"purescript-prelude": "^6.0.0",
"purescript-halogen-vdom": "^8.0.0",
"purescript-ordered-collections": "^3.0.0",
"purescript-foreign": "^7.0.0"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,9 +5,9 @@
"build": "pulp build -- --censor-lib --strict"
},
"devDependencies": {
"pulp": "^15.0.0",
"pulp": "^16.0.0-0",
"purescript-psa": "^0.8.2",
"purescript": "^0.14.1",
"purescript": "^0.15.0-0",
"rimraf": "^3.0.2"
},
"dependencies": {
Expand Down

0 comments on commit c735467

Please sign in to comment.