Skip to content

Commit

Permalink
test docker-compose on CI
Browse files Browse the repository at this point in the history
  • Loading branch information
resolritter committed Apr 3, 2023
1 parent 8f549cf commit 5eaff44
Showing 1 changed file with 23 additions and 0 deletions.
23 changes: 23 additions & 0 deletions .github/workflows/docker_ci.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
name: Docker-CI

on:
push:
branches:
- main
pull_request:
branches:
- main

jobs:
build-frontend-app:
runs-on: ubuntu-latest
steps:
- name: Checkout source code
uses: actions/checkout@v3

- name: Set up Docker
uses: docker-practice/actions-setup-docker@fd7ecdac7caf8e2c541a48c9bcc280aae59a8461 # master

- name: Build the app
working-directory: frontend/scripts/docker-buildfiles
run: docker-compose build --progress=plain

0 comments on commit 5eaff44

Please sign in to comment.