Skip to content

chore(deps): bump nginx from 1.31.1-alpine to 1.31.3-alpine in the all group across 1 directory #14

chore(deps): bump nginx from 1.31.1-alpine to 1.31.3-alpine in the all group across 1 directory

chore(deps): bump nginx from 1.31.1-alpine to 1.31.3-alpine in the all group across 1 directory #14

Workflow file for this run

name: Quality
on:
push:
branches: [main]
pull_request:
workflow_dispatch:
permissions:
contents: read
concurrency:
group: quality-${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
quality:
name: quality
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: 26
cache: npm
- name: Install dependencies
run: npm ci
- name: Validate repository
run: npm run check
- name: Validate container entrypoint syntax
run: sh -n start.sh
docker-build:
name: docker-build
if: github.event_name == 'pull_request'
needs: quality
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v4
- name: Build image without publishing
uses: docker/build-push-action@v7
with:
context: .
platforms: linux/amd64
push: false
build-args: |
APP_REVISION=${{ github.event.pull_request.head.sha }}
cache-from: type=gha
cache-to: type=gha,mode=max