-
Notifications
You must be signed in to change notification settings - Fork 6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Update to v0.14.0-rc3 #13
Conversation
CI fails with this error:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This happens because of the /* global FileReader */
comment in src/Web/File/FileReader.js, we can remove it.
Shouldn’t we also upgrade the bower dependencies to master?
{- | ||
Welcome to a Spago project! | ||
You can edit this file as you like. | ||
-} |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Shall we remove this comment?
@@ -1,6 +1,6 @@ | |||
name: CI | |||
|
|||
on: push | |||
on: [push, pull_request] |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
on: [push, pull_request] | |
on: | |
push: | |
branches: [master] | |
pull_request: | |
branches: [master] |
We also need to update the Bower file to point to master. |
Backlinking to purescript/purescript#3942