Skip to content

Commit

Permalink
Add workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
waaaaargh committed Apr 1, 2024
1 parent 34f43b9 commit 1595fa4
Showing 1 changed file with 49 additions and 0 deletions.
49 changes: 49 additions & 0 deletions .github/workflows/push_main.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,49 @@
on:
push:
branches:
- "main"

jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout
- uses: actions/setup-node@v4
name: Setup Node
- run: npm install --include-dev
name: Install dependencies
- run: npm run test
name: Run unit tests

build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
name: Checkout
- uses: actions/setup-node@v4
name: Setup Node.js
with:
node_version: 20
- run: npm ci
name: Install dependencies
- run: npm run build
name: Build code

build_image:
runs-on: ubuntu-latest
needs: ['build', 'test']
steps:
- uses: actions/checkout@v4
name: Checkout
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build and push
uses: docker/build-push-action@v5
with:
context: .
platforms: linux/amd64,linux/arm64
push: true
tags: ghcr.io/openlab-aux/infopanel-client:latest

0 comments on commit 1595fa4

Please sign in to comment.