Skip to content

Commit 803c6f2

Browse files
committed
Changes after review 1
1 parent d32e58d commit 803c6f2

File tree

5 files changed

+33
-1153
lines changed

5 files changed

+33
-1153
lines changed

.github/workflows/ci.yml

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,13 +18,18 @@ jobs:
1818

1919
- uses: actions/setup-node@v2
2020
with:
21-
node-version: "18"
21+
node-version: "14"
2222

2323
- name: Install dependencies
2424
run: |
25-
npm install -g spago@next
25+
npm install -g bower
2626
npm install
27-
spago install
27+
bower install --production
2828
2929
- 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

bower.json

Lines changed: 20 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,20 @@
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+
}

0 commit comments

Comments
 (0)