Skip to content

Updated ignores and enhanced logging for database operations #19

Updated ignores and enhanced logging for database operations

Updated ignores and enhanced logging for database operations #19

Workflow file for this run

name: Build and Publish Docker Image
on:
workflow_dispatch:
push:
branches:
- main
pull_request:
branches:
- main
concurrency:
group: ${{ github.workflow }}
cancel-in-progress: true
jobs:
lint-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Pnpm
uses: pnpm/action-setup@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Lint TypeScript
run: pnpm run lint
- name: Run tests
run: pnpm run test
build-and-publish:
runs-on: ubuntu-latest
needs: [lint-and-test]
permissions:
contents: read
packages: write
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Set up QEMU
uses: docker/setup-qemu-action@v3
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Log in to GitHub Container Registry
uses: docker/login-action@v3
with:
registry: ghcr.io
username: ${{ github.actor }}
password: ${{ secrets.GITHUB_TOKEN }}
- name: Build and push Docker image
uses: docker/build-push-action@v6
with:
context: .
push: true
tags: ghcr.io/${{ github.repository_owner }}/omni-notify:latest
cache-from: type=registry,ref=ghcr.io/${{ github.repository_owner }}/omni-notify:latest
cache-to: type=inline
- name: Logout from GitHub Container Registry
run: docker logout ghcr.io