File tree 4 files changed +34
-25
lines changed
4 files changed +34
-25
lines changed Original file line number Diff line number Diff line change
1
+ name : CI
2
+
3
+ on : push
4
+
5
+ jobs :
6
+ build :
7
+ runs-on : ubuntu-latest
8
+ steps :
9
+ - uses : actions/checkout@v2
10
+
11
+ - uses : purescript-contrib/setup-purescript@main
12
+ with :
13
+ purescript : " 0.14.0-rc3"
14
+ psa : " 0.8.0"
15
+
16
+ - uses : actions/setup-node@v1
17
+ with :
18
+ node-version : " 12"
19
+
20
+ - name : Install dependencies
21
+ run : |
22
+ npm install -g bower
23
+ npm install
24
+ bower install --production
25
+
26
+ - name : Build source
27
+ run : npm run-script build
28
+
29
+ - name : Run tests
30
+ run : |
31
+ bower install
32
+ npm run-script test --if-present
Original file line number Diff line number Diff line change 1
1
/. *
2
2
! /.gitignore
3
+ ! /.github
3
4
! /.eslintrc.json
4
5
! /.travis.yml
5
6
package-lock.json
Load Diff This file was deleted.
Original file line number Diff line number Diff line change 1
1
# purescript-arrays
2
2
3
3
[ ![ Latest release] ( http://img.shields.io/github/release/purescript/purescript-arrays.svg )] ( https://github.com/purescript/purescript-arrays/releases )
4
- [ ![ Build status] ( https://travis-ci.org /purescript/purescript-arrays.svg?branch=master )] ( https://travis-ci.org /purescript/purescript-arrays )
4
+ [ ![ Build status] ( https://github.com /purescript/purescript-arrays/workflows/CI/badge .svg?branch=master )] ( https://github.com /purescript/purescript-arrays/actions?query=workflow%3ACI+branch%3Amaster )
5
5
6
6
Utility functions for the ` Array ` type - JavaScript's native arrays.
7
7
You can’t perform that action at this time.
0 commit comments