-
Notifications
You must be signed in to change notification settings - Fork 82
Finish GH Actions migration #399
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
Merged
Merged
Changes from all commits
Commits
Show all changes
26 commits
Select commit
Hold shift + click to select a range
8eb8609
Drop trigger.yml
JordanMartinez 3400ca1
Update deps to versions listed in latest package set
JordanMartinez 41bcde1
Update package-lock.json from v1 to v2
JordanMartinez e071477
Ignore additional files
JordanMartinez 469b248
Fix Version arg; apply suggestions; code compiles
JordanMartinez c2461b9
Remove unused values/fns
JordanMartinez 831bad5
Drop unused noPsa (handled by shouldUsePsa)
JordanMartinez bbfa686
Install psc-package via npm
JordanMartinez 92b01d8
Run CI on ubuntu and windows
JordanMartinez 3862469
Ignore unused arg
JordanMartinez eef4720
Sort imports
JordanMartinez 2abfe7c
Drop unused import
JordanMartinez c82b118
Fix prelude import warning
JordanMartinez 770a3a3
Fix more compiler warnings
JordanMartinez f2651c5
Test more PS versions
JordanMartinez 534a023
Run all builds to completion
JordanMartinez fdc6cb9
Add v0.11.0 back
JordanMartinez 40794bd
Fix indentation
JordanMartinez eb1ee70
Run unit and integration tests separately
JordanMartinez 5fe1d6b
Non-standard scripts require 'run' command
JordanMartinez 5fb2e5b
Use compiler-version-specific deps on init
JordanMartinez 6b79581
Drop support for PureScript v0.11.0
JordanMartinez 90841e1
Bump min psa version to v0.7.0
JordanMartinez dfccf2a
Add changelog entry
JordanMartinez eaf0e58
Delete commented out old code
JordanMartinez cf1469e
Merge windows build into ubuntu build
JordanMartinez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or 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
This file was deleted.
Oops, something went wrong.
This file contains hidden or 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 |
|---|---|---|
|
|
@@ -10,3 +10,6 @@ | |
| .browserify-cache.json | ||
| /.psvm/ | ||
| /unit-tests.js | ||
| .psc* | ||
| .purs-repl | ||
|
|
||
This file contains hidden or 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
This file contains hidden or 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
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
It'd be nice to pull this out so that it can be reused by both the windowsBuild and the nonWindowsBuild, so that the test versions can't get out of sync between the windows and non-windows builds.
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.
I would, but it's not clear to me how to do that. I could use one build and then use a lot of
if: runner.os != 'Windows'conditions, but I didn't like that. So, I split it into two.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.
🤷♂️ I merged them back into one build because I did make the mistake of only updating one of those arrays in #401.