Skip to content

Commit

Permalink
Create github action to verify that the app builds
Browse files Browse the repository at this point in the history
  • Loading branch information
anirbanmu committed Mar 16, 2024
1 parent 7dfeb22 commit 29e0e95
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Build verification

on:
push:
branches:
- main
pull_request:

jobs:
container-image-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: docker/setup-qemu-action@v3
- uses: docker/setup-buildx-action@v3
- uses: docker/build-push-action@v5
with:
push: false

base-build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 18
- run: npm ci
- run: npm run build

0 comments on commit 29e0e95

Please sign in to comment.