Bump bootstrap from 4.3.1 to 5.0.0 in /app/app #15
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: Check CI | |
on: | |
# Run on pull requests events on primary branches | |
pull_request: | |
branches: | |
- main | |
- dev | |
paths: | |
- 'app/**' | |
- 'v1/**' | |
- 'v2/**' | |
# Set GITHUB_TOKEN permissions | |
permissions: | |
contents: read | |
# Allow one concurrent deployment | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
# Build job | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v4 | |
- name: Build application files | |
run: docker compose -f docker-compose.yml -f docker-compose.cicd.yml build | |
env: | |
GITHUB_REPOSITORY_URL: https://github.com/${{ github.repository }} | |
GITHUB_SHA: ${{ github.sha }} |