Skip to content

Commit

Permalink
Merge pull request #14 from justinwoo/ci-setup
Browse files Browse the repository at this point in the history
Ci setup
  • Loading branch information
justinwoo authored Aug 18, 2019
2 parents c0c2231 + 0d16c91 commit b100f1c
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 34 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Node CI

on: [push]

jobs:
build:

runs-on: ubuntu-latest

steps:
- uses: actions/checkout@master
- name: Use Node.js 10.x
uses: actions/setup-node@v1
with:
version: 10.x
- name: Install and test
run: |
TAG=$(wget -q -O - https://github.com/purescript/purescript/releases/latest --server-response --max-redirect 0 2>&1 | sed -n -e 's/.*Location:.*tag\///p')
wget -O $HOME/purescript.tar.gz https://github.com/purescript/purescript/releases/download/$TAG/linux64.tar.gz
tar -xvf $HOME/purescript.tar.gz -C $HOME/
chmod a+x $HOME/purescript
npm install -g bower pulp
npm install
bower install
PATH=$HOME/purescript:$PATH
pulp test
26 changes: 0 additions & 26 deletions azure-pipelines.yml

This file was deleted.

16 changes: 8 additions & 8 deletions bower.json
Original file line number Diff line number Diff line change
Expand Up @@ -12,16 +12,16 @@
"output"
],
"dependencies": {
"purescript-prelude": "^4.0.1",
"purescript-record": "^1.0.0",
"purescript-prelude": "^4.1.1",
"purescript-record": "^2.0.1",
"purescript-functions": "^4.0.0",
"purescript-node-http": "^5.0.0",
"purescript-aff-promise": "^2.0.0",
"purescript-node-buffer": "^5.0.0"
"purescript-node-http": "^5.0.2",
"purescript-aff-promise": "^2.1.0",
"purescript-node-buffer": "^6.0.0"
},
"devDependencies": {
"purescript-milkis": "^6.0.1",
"purescript-test-unit": "^14.0.0",
"purescript-node-process": "^6.0.0"
"purescript-milkis": "^7.2.1",
"purescript-test-unit": "^15.0.0",
"purescript-node-process": "^7.0.0"
}
}

0 comments on commit b100f1c

Please sign in to comment.