Skip to content

Commit

Permalink
CI(dependabot時)の各ジョブに実行順序を持たせる (#1344)
Browse files Browse the repository at this point in the history
  • Loading branch information
penicillin0 committed Jul 24, 2023
1 parent 2f4104a commit 80510b6
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
5 changes: 5 additions & 0 deletions .changeset/plenty-months-tell.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
---
"ingred-ui": patch
---

fix ci for dependabot
5 changes: 5 additions & 0 deletions .github/workflows/check.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -9,6 +9,9 @@ jobs:
if: github.actor == 'dependabot[bot]'
steps:
- uses: actions/checkout@v3
with:
ref: ${{ github.event.pull_request.head.sha }}
token: ${{ secrets.FLUCT_MEMBER_GITHUB_TOKEN }}
- name: Use Node.js 18.x
uses: actions/setup-node@v3
with:
Expand Down Expand Up @@ -77,6 +80,8 @@ jobs:
await exec.exec('git push --force');
test-lint-and-build:
runs-on: ubuntu-latest
needs: [generate-changeset]
if: always() && (needs.generate-changeset.result == 'skipped' || needs.generate-changeset.result == 'success')
steps:
- uses: actions/checkout@v3
with:
Expand Down

0 comments on commit 80510b6

Please sign in to comment.