Skip to content

Commit

Permalink
Merge branch 'develop'
Browse files Browse the repository at this point in the history
  • Loading branch information
alexdlaird committed Oct 17, 2024
2 parents d858ec6 + 951532c commit 09e50e0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,11 +22,11 @@ jobs:
with:
node-version: 18
- name: Install dependencies
run:
make install build
run: make install build
- name: Test frontend
run:
make test
run: make test
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Test Docker build
run: make build-docker
- name: Upload coverage
Expand Down
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ test:
@npm run test

build-docker:
docker build -t helium/frontend:latest -t helium/frontend:$(TAG_VERSION) .
docker buildx build --platform=linux/arm64 -t helium/frontend:latest -t helium/frontend:$(TAG_VERSION) .

run-docker:
docker compose up -d
Expand Down

0 comments on commit 09e50e0

Please sign in to comment.