Skip to content

Commit

Permalink
chore: add validation for docker-compose files (#3845)
Browse files Browse the repository at this point in the history
  • Loading branch information
manekenpix authored Oct 8, 2023
1 parent 0f66e6a commit 16a53f4
Showing 1 changed file with 22 additions and 0 deletions.
22 changes: 22 additions & 0 deletions .github/workflows/docker-files-validation.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
name: docker-files-check-ci

on:
pull_request:
branches:
- master
paths:
- 'docker/*'
push:
branches:
- master
paths:
- 'docker/*'

jobs:
docker-compose-files-validation:
name: Docker compose files validation
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validation for docker-compose files
run: docker-compose -f docker/docker-compose.yml -f docker/development.yml -f docker/production.yml -f docker/supabase/docker-compose.yml config --quiet --no-interpolate

0 comments on commit 16a53f4

Please sign in to comment.