Bump globals from 15.9.0 to 15.13.0 in /infrastructure #103
Workflow file for this run
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
# mainブランチ以外へのPush時に走る処理 | |
name: push | |
on: | |
push: | |
branches-ignore: | |
- main | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
# 最初にworkflowファイル全体をチェックする | |
check-workflows: | |
permissions: | |
contents: read | |
uses: ./.github/workflows/check-workflows.yml | |
# workflowファイル全体のチェックが終わったら、テストを実行する | |
test-infrastructure: | |
needs: check-workflows | |
permissions: | |
contents: read | |
secrets: inherit | |
uses: ./.github/workflows/test.yml | |
# サーバアプリケーションのビルドとテストを実行する | |
test-server-app: | |
needs: check-workflows | |
permissions: | |
contents: read | |
uses: ./.github/workflows/server-app.yml |