Bump @actions/artifact in the production-dependencies group (#108) #363
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
name: Build & Tests | |
on: | |
pull_request: | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
push: | |
branches: | |
- '**' | |
paths-ignore: | |
- '**.md' | |
- 'docs/**' | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set Node.js 20.x | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.x | |
cache: 'npm' | |
- run: | | |
npm install --legacy-peer-deps # TODO: remove after typescript-eslint upgrades to eslint 9 | |
- run: | | |
npm run all | |
job1: | |
name: Job 1 | |
needs: build | |
runs-on: ubuntu-latest | |
outputs: | |
out1: ${{ steps.s1.outputs.out1 }} | |
steps: | |
- id: s1 | |
run: echo "out1=test-1" >> $GITHUB_OUTPUT | |
job2: | |
name: Job 2 | |
needs: build | |
runs-on: ubuntu-latest | |
outputs: | |
out2: ${{ steps.s2.outputs.out2 }} | |
steps: | |
- run: sleep 60 | |
- id: s2 | |
run: echo "out2=test-2" >> $GITHUB_OUTPUT | |
- run: | | |
echo '{"out2":"test-2"}' > output2.json | |
- uses: actions/upload-artifact@v4 | |
with: | |
name: output2.json | |
path: output2.json | |
retention-days: 1 | |
test: | |
name: Test | |
needs: job1 | |
runs-on: ubuntu-latest | |
steps: | |
- run: | | |
echo "Some step that can run without job 2:: ${{ needs.job1.outputs.out1 }}" | |
- uses: actions/checkout@v4 | |
- id: wait-for-jobs | |
uses: ./ | |
with: | |
gh-token: ${{ secrets.GITHUB_TOKEN }} | |
jobs: Job 2 | |
outputs-from: output2.json | |
- run: | | |
echo "Some step that needs job 2:: ${{ fromJSON(steps.wait-for-jobs.outputs.outputs).out2 }}" |