Skip to content

Bump globals from 15.9.0 to 15.13.0 in /infrastructure #103

Bump globals from 15.9.0 to 15.13.0 in /infrastructure

Bump globals from 15.9.0 to 15.13.0 in /infrastructure #103

Workflow file for this run

# 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