Skip to content

Commit

Permalink
chore: Add Docker build to CI (#11)
Browse files Browse the repository at this point in the history
  • Loading branch information
meyfa authored Dec 1, 2024
1 parent d17a4c6 commit 45a04ed
Showing 1 changed file with 21 additions and 0 deletions.
21 changes: 21 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,3 +21,24 @@ jobs:
cache: npm
- run: npm ci
- run: npm run lint

build:
name: Build
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4

- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3

- name: Build
id: docker-build
uses: docker/build-push-action@v6
with:
context: ./
file: ./client/Dockerfile
platforms: linux/amd64,linux/arm64
push: false
cache-from: type=gha
cache-to: type=gha,mode=max

0 comments on commit 45a04ed

Please sign in to comment.