Skip to content

chore: bump @commitlint/cli from 20.3.0 to 20.4.0 #55

chore: bump @commitlint/cli from 20.3.0 to 20.4.0

chore: bump @commitlint/cli from 20.3.0 to 20.4.0 #55

Workflow file for this run

name: Dockerfile build test
on:
push:
branches: [main]
pull_request:
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
env:
NODE_VERSION: "22"
jobs:
build:
runs-on: ubuntu-latest
permissions:
contents: read
steps:
- name: Check out repository
uses: actions/checkout@v6
# Build using your Makefile target (runs: docker build -t hello-universe-db .)
- name: Build Docker image
run: make build
# Quick sanity check that the image exists
- name: Verify image was built
run: docker image inspect hello-universe-db:latest > /dev/null
semantic:
name: "Semantic Release Dry Run"
needs: [build]
runs-on: ubuntu-latest
if: ${{ !github.event.pull_request.draft }}
steps:
- name: Setup nodeJs
uses: actions/setup-node@v6
with:
node-version: ${{ env.NODE_VERSION }}
- name: Check out code into the Go module directory
uses: actions/checkout@v6
- name: Install dependencies
run: npm ci
- name: Semantic Release Dry Run
run: npx semantic-release --dry-run