push-to-registry/.github/workflows/ci.yml
Sam Koved 3916dcf329
Some checks failed
Check Case Normalization / Build and push image (push) Has been cancelled
Check Case Normalization / Build and push image-1 (push) Has been cancelled
CI checks / Run ESLint (push) Has been cancelled
CI checks / Check Distribution (push) Has been cancelled
CI checks / Check Input and Output enums (push) Has been cancelled
Push to GHCR / Build and push image (push) Has been cancelled
Push to GHCR / Build and push image-1 (push) Has been cancelled
Build and Push Manifest / Build and push manifest (push) Has been cancelled
Build and Push Manifest / Build and push manifest-1 (push) Has been cancelled
Multiple container CLI build tests / Build with docker after podman and push (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with docker after podman and push (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with docker after podman and push FQIN (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with docker after podman and push FQIN (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with docker only and push (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with docker only and push (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with docker only and push FQIN (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with docker only and push FQIN (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with podman after docker and push (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with podman after docker and push (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with podman after docker and push FQIN (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with podman after docker and push FQIN (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with podman only and push (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with podman only and push (latest: true) (push) Has been cancelled
Multiple container CLI build tests / Build with podman only and push FQIN (latest: false) (push) Has been cancelled
Multiple container CLI build tests / Build with podman only and push FQIN (latest: true) (push) Has been cancelled
Push to Quay.io / Build and push image (push) Has been cancelled
Push to Quay.io / Build and push image-1 (push) Has been cancelled
Login and Push / Login and push image to Quay.io (push) Has been cancelled
Login and Push / Login and push image to Quay.io-1 (push) Has been cancelled
Update dependencies (#106)
update dependencies to the latest versions for Node.js 20

 Signed-off-by: skoved <skoved@redhat.com>
2026-03-30 10:17:29 -04:00

48 lines
1 KiB
YAML

name: CI checks
on:
push:
pull_request:
jobs:
lint:
name: Run ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: npm ci
- run: npm run lint
check-dist:
name: Check Distribution
runs-on: ubuntu-latest
env:
BUNDLE_FILE: "dist/index.js"
BUNDLE_COMMAND: "npm run bundle"
steps:
- uses: actions/checkout@v4
- name: Install
run: npm ci
- name: Verify Latest Bundle
uses: redhat-actions/common/bundle-verifier@v1
with:
bundle_file: ${{ env.BUNDLE_FILE }}
bundle_command: ${{ env.BUNDLE_COMMAND }}
check-inputs-outputs:
name: Check Input and Output enums
runs-on: ubuntu-latest
env:
IO_FILE: ./src/generated/inputs-outputs.ts
steps:
- uses: actions/checkout@v4
- name: Install dependencies
run: npm ci
- name: Verify Input and Output enums
uses: redhat-actions/common/action-io-generator@v1
with:
io_file: ${{ env.IO_FILE }}