-
Notifications
You must be signed in to change notification settings - Fork 2
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
Support running pipeline #24
Changes from all commits
572938b
0ddcdd9
ba2cad0
78adce2
7206f79
0b68687
8b4bbd4
10bcc1c
8747b44
c565936
f1325b0
a187a84
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,10 +27,24 @@ jobs: | |
uses: actions/checkout@v4 | ||
|
||
- name: 🧰 Setup Stack | ||
uses: freckle/stack-action@v4 | ||
# FIXME use freckle/stack-action@v4 when https://github.com/freckle/stack-action/pull/31 is merged | ||
uses: deemp/stack-action@main | ||
with: | ||
fast: ${{ github.ref_name != 'master' }} | ||
|
||
- uses: actions/setup-node@v4 | ||
with: | ||
node-version: 20 | ||
|
||
- uses: actions/setup-java@v4 | ||
with: | ||
distribution: "zulu" | ||
java-version: 21 | ||
|
||
- run: npm install -g [email protected] | ||
|
||
- run: ./pipeline.sh | ||
|
||
haddock: | ||
needs: [build] | ||
if: ${{ github.ref_name == 'master' }} | ||
|
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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 should probably be a separate job, but I'm ok with it being here for now.