GHA(deps): Bump redhat-actions/buildah-build from c79846fb306beeba490e89fb75d2d1af95831e79 to 1ec5690277b99c0f314e62c7e28dcc6074507706 #58
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# TODO: Experimental feature | |
name: 'CI -> Test' | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- dev | |
paths-ignore: | |
- '*.md' | |
- '.*ignore' | |
pull_request: | |
branches: | |
- dev | |
paths-ignore: | |
- '*.md' | |
- '.*ignore' | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
permissions: | |
contents: read | |
jobs: | |
lint: | |
name: 'Lint' | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- name: 'Harden Runner' | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: 'Checkout' | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: 'Setup Bun' | |
uses: oven-sh/setup-bun@9b21598af8d4dfc302e5a30250007de0fda92acc # v1.1.1 | |
- name: 'Setup dependencies' | |
run: bun install --production --frozen-lockfile --ignore-scripts | |
- name: 'Run lint' | |
run: bun run lint | |
build: | |
name: 'Build' | |
runs-on: ubuntu-latest | |
permissions: | |
id-token: write | |
steps: | |
- name: 'Harden Runner' | |
uses: step-security/harden-runner@63c24ba6bd7ba022e95695ff85de572c04a18142 # v2.7.0 | |
with: | |
egress-policy: audit | |
- name: 'Checkout' | |
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1 | |
- name: 'Setup Node.js' | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2 | |
with: | |
node-version: current | |
- name: 'Setup Bun' | |
uses: oven-sh/setup-bun@9b21598af8d4dfc302e5a30250007de0fda92acc # v1.1.1 | |
- name: 'Setup dependencies' | |
run: bun install --production --frozen-lockfile --ignore-scripts | |
- name: 'Run build' | |
run: bun run build:standalone |