forked from purescript/purescript-strings
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Migrate to GitHub Actions and update installation instructions. (pure…
- Loading branch information
1 parent
52cae45
commit dcbd6cf
Showing
4 changed files
with
34 additions
and
27 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
name: CI | ||
|
||
on: push | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
|
||
- uses: purescript-contrib/setup-purescript@main | ||
with: | ||
purescript: "0.14.0-rc3" | ||
|
||
- uses: actions/setup-node@v1 | ||
with: | ||
node-version: "12" | ||
|
||
- name: Install dependencies | ||
run: | | ||
npm install -g bower | ||
npm install | ||
bower install --production | ||
- name: Build source | ||
run: npm run-script build | ||
|
||
- name: Run tests | ||
run: | | ||
bower install | ||
npm run-script test --if-present |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,7 +1,7 @@ | ||
/.* | ||
!/.gitignore | ||
!/.eslintrc.json | ||
!/.travis.yml | ||
!/.github/ | ||
/bower_components/ | ||
/node_modules/ | ||
/output/ | ||
|
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters