Skip to content

jha-web build

jha-web build #806

Workflow file for this run

name: jha-web build
on:
push:
paths:
- "jha/src/**/*.html"
- "jha/src/**/*.ts"
- "jha/src/**/*.js"
- "jha/src/**/*.scss"
- "jha/src/**/*.vue"
- "jha/package*.json"
workflow_dispatch:
env:
NAMESPACE: f0463d-tools
ARTIFACT_BUILD_NAME: jha-web-artifact-build
ARTIFACT_IMAGE_NAME: jha-web-artifacts
BUILD_NAME: jha-web-image-build
IMAGE_NAME: jha-web
SOURCE_IMAGE_TAG: latest
TARGET_IMAGE_TAG: dev
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./jha
steps:
- uses: actions/checkout@main
- uses: actions/setup-node@main
with:
node-version: "22"
- name: Install dependencies
run: npm ci
- name: Unit tests
run: npm run test
- name: LINTing
run: npm run lint
# - name: OpenAPI Schema
# run: npm run test:schema
build:
runs-on: ubuntu-latest
defaults:
run:
working-directory: ./jha
needs: [test]
strategy:
matrix:
node-version: [18.x, 22.x]
steps:
- uses: actions/checkout@v1
- uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v1
with:
path: node_modules
key: ${{ runner.OS }}-build-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.OS }}-build-${{ env.cache-name }}-
${{ runner.OS }}-build-
${{ runner.OS }}-
- name: npm install and build
run: |
npm ci
npm run build --if-present
env:
CI: "true"
image-build:
#if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
runs-on: ubuntu-latest
needs: [test, build]
steps:
- uses: redhat-actions/openshift-tools-installer@v1
with:
source: "mirror"
oc: "latest"
- name: Log in to Openshift
run: oc login --token=${{ secrets.OpenShiftToken }} --server=${{ secrets.OpenShiftServerURL}}
- name: Generate Artifact Build
run: oc start-build ${ARTIFACT_BUILD_NAME} -n ${NAMESPACE} --follow
- name: Tag Artifact Build
run: oc tag -n ${NAMESPACE} ${NAMESPACE}/${ARTIFACT_IMAGE_NAME}:${SOURCE_IMAGE_TAG} ${NAMESPACE}/${ARTIFACT_IMAGE_NAME}:${TARGET_IMAGE_TAG}
- name: Generate Image Build
run: oc start-build ${BUILD_NAME} -n ${NAMESPACE} --follow
- name: Time delay
# to give time for Openshift to process the build so it doesn't tag the wrong image
run: sleep 20s
- name: Tag Image Build
run: oc tag -n ${NAMESPACE} ${NAMESPACE}/${IMAGE_NAME}:${SOURCE_IMAGE_TAG} ${NAMESPACE}/${IMAGE_NAME}:${TARGET_IMAGE_TAG}