We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents d9d35b4 + cfe6ff5 commit b1d90aeCopy full SHA for b1d90ae
.github/workflows/ci.yml
@@ -0,0 +1,31 @@
1
+name: CI
2
+
3
+on:
4
+ - push
5
+ - pull_request
6
7
+jobs:
8
+ build:
9
+ runs-on: ubuntu-latest
10
+ steps:
11
+ - uses: actions/checkout@v2
12
13
+ - uses: purescript-contrib/setup-purescript@main
14
15
+ - uses: actions/setup-node@v1
16
+ with:
17
+ node-version: "12"
18
19
+ - name: Install dependencies
20
+ run: |
21
+ npm install -g bower
22
+ npm install
23
+ bower install --production
24
25
+ - name: Build source
26
+ run: npm run-script build
27
28
+ - name: Run tests
29
30
+ bower install
31
+ npm run-script test --if-present
.gitignore
@@ -1,6 +1,6 @@
/.*
!/.gitignore
-!/.travis.yml
+!/.github
/bower_components/
/node_modules/
/output/
.travis.yml
0 commit comments