chore(deps): bump the effect group with 3 updates (#13) #12
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: Continuous Integration and Deployment | |
on: | |
push: | |
branches: [ master ] | |
permissions: | |
contents: write | |
pages: write | |
id-token: write | |
pull-requests: write | |
jobs: | |
run-ci: | |
uses: ./.github/workflows/reusable-ci.yml | |
all: | |
needs: [run-ci] | |
runs-on: ubuntu-latest | |
if: always() | |
steps: | |
- name: Check job status | |
if: contains(needs.*.result, 'failure') | |
run: exit 1 | |
- name: All jobs completed successfully | |
if: success() | |
run: echo "All jobs completed successfully!" |