Skip to content
This repository was archived by the owner on Jun 15, 2023. It is now read-only.

Commit 1807eda

Browse files
authoredApr 26, 2021
Merge pull request #7 from slamdata/ps-0.14
Update for GH actions, PS 0.14
2 parents f000058 + f77cc59 commit 1807eda

File tree

6 files changed

+45
-31
lines changed

6 files changed

+45
-31
lines changed
 

‎.github/workflows/ci.yml

+31
Original file line numberDiff line numberDiff line change
@@ -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+
run: |
30+
bower install
31+
npm run-script test --if-present

‎.gitignore

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
npm-debug.log
22
/.*
33
!/.gitignore
4-
!/.travis.yml
4+
!/.github
55
!/.eslintrc.json
66
/bower_components/
77
/node_modules/

‎.travis.yml

-17
This file was deleted.

‎README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
# purescript-clipboard
22

33
[![Latest release](http://img.shields.io/github/release/slamdata/purescript-clipboard.svg)](https://github.com/slamdata/purescript-clipboard/releases)
4-
[![Build status](https://travis-ci.org/slamdata/purescript-clipboard.svg?branch=master)](https://travis-ci.org/slamdata/purescript-clipboard)
4+
![Build Status](https://github.com/slamdata/purescript-clipboard/actions/workflows/ci.yml/badge.svg)
55

66
Basic PureScript bindings for the [clipboard.js](https://github.com/zenorocha/clipboard.js/) library.
77

‎bower.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@
66
],
77
"repository": {
88
"type": "git",
9-
"url": "git://github.com/slamdata/purescript-clipboard.git"
9+
"url": "https://github.com/slamdata/purescript-clipboard.git"
1010
},
1111
"ignore": [
1212
"**/.*",
@@ -18,12 +18,12 @@
1818
"package.json"
1919
],
2020
"dependencies": {
21-
"purescript-prelude": "^4.1.1",
22-
"purescript-web-dom": "^3.0.0",
23-
"purescript-css": "^4.0.0"
21+
"purescript-prelude": "^5.0.0",
22+
"purescript-web-dom": "^5.0.0",
23+
"purescript-css": "^5.0.1"
2424
},
2525
"devDependencies": {
26-
"purescript-web-html": "^2.2.1",
27-
"purescript-web-events": "^2.0.1"
26+
"purescript-web-html": "^3.0.1",
27+
"purescript-web-events": "^3.0.0"
2828
}
2929
}

‎package.json

+6-6
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77
"build-example": "pulp browserify -I example/src --to example/example.js"
88
},
99
"dependencies": {
10-
"clipboard": "^2.0.4",
11-
"eslint": "^5.16.0",
12-
"pulp": "^13.0.0",
13-
"purescript": "^0.13.0",
14-
"purescript-psa": "^0.7.3",
15-
"rimraf": "^2.6.3"
10+
"clipboard": "^2.0.8",
11+
"eslint": "^7.25.0",
12+
"pulp": "^15.0.0",
13+
"purescript": "^0.14.1",
14+
"purescript-psa": "^0.8.2",
15+
"rimraf": "^3.0.2"
1616
}
1717
}

0 commit comments

Comments
 (0)
This repository has been archived.