File tree Expand file tree Collapse file tree 5 files changed +33
-1153
lines changed Expand file tree Collapse file tree 5 files changed +33
-1153
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,18 @@ jobs:
18
18
19
19
- uses : actions/setup-node@v2
20
20
with :
21
- node-version : " 18 "
21
+ node-version : " 14 "
22
22
23
23
- name : Install dependencies
24
24
run : |
25
- npm install -g spago@next
25
+ npm install -g bower
26
26
npm install
27
- spago install
27
+ bower install --production
28
28
29
29
- name : Build source
30
- run : spago build
30
+ run : npm run-script build
31
+
32
+ - name : Run tests
33
+ run : |
34
+ bower install
35
+ npm run-script test --if-present
Original file line number Diff line number Diff line change
1
+ {
2
+ "name" : " purescript-web-dom" ,
3
+ "homepage" : " https://github.com/purescript-web/purescript-web-dom" ,
4
+ "license" : " MIT" ,
5
+ "repository" : {
6
+ "type" : " git" ,
7
+ "url" : " https://github.com/purescript-web/purescript-web-dom.git"
8
+ },
9
+ "ignore" : [
10
+ " **/.*" ,
11
+ " bower_components" ,
12
+ " node_modules" ,
13
+ " output" ,
14
+ " bower.json" ,
15
+ " package.json"
16
+ ],
17
+ "dependencies" : {
18
+ "purescript-web-events" : " ^4.0.0"
19
+ }
20
+ }
You can’t perform that action at this time.
0 commit comments