mirror of
https://github.com/sussy-code/smov.git
synced 2025-01-01 16:37:39 +01:00
Add Docker build to test workflow
This commit is contained in:
parent
dcac368468
commit
75a2c31800
1 changed files with 18 additions and 0 deletions
18
.github/workflows/linting_testing.yml
vendored
18
.github/workflows/linting_testing.yml
vendored
|
@ -55,3 +55,21 @@ jobs:
|
||||||
|
|
||||||
- name: Build Project
|
- name: Build Project
|
||||||
run: pnpm run build
|
run: pnpm run build
|
||||||
|
|
||||||
|
docker:
|
||||||
|
name: Build Docker
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Checkout repository
|
||||||
|
uses: actions/checkout@v4
|
||||||
|
|
||||||
|
- name: Setup Docker buildx
|
||||||
|
uses: docker/setup-buildx-action@v3
|
||||||
|
|
||||||
|
- name: Build Docker image
|
||||||
|
uses: docker/build-push-action@v5
|
||||||
|
with:
|
||||||
|
push: false
|
||||||
|
platforms: linux/amd64,linux/arm64,linux/arm
|
||||||
|
context: .
|
||||||
|
|
Loading…
Reference in a new issue