generated from bcgov/quickstart-openshift
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
123 additions
and
210 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,32 @@ | ||
name: .Tests | ||
|
||
on: | ||
workflow_call: | ||
inputs: | ||
### Required | ||
target: | ||
description: PR number, test or prod | ||
required: true | ||
type: string | ||
|
||
jobs: | ||
cypress-e2e: | ||
name: Cypress E2E | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
matrix: | ||
browser: [chrome, firefox] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: cypress-io/github-action@v5 | ||
name: Cypress run | ||
with: | ||
config: pageLoadTimeout=30000,baseUrl=https://pubcode-${{ inputs.target }}.apps.silver.devops.gov.bc.ca/ | ||
working-directory: ./frontend | ||
browser: ${{ matrix.browser }} | ||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: cypress-screenshots | ||
path: ./frontend/cypress/screenshots | ||
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn` |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
name: Analysis | ||
|
||
on: | ||
push: | ||
branches: [main] | ||
merge_group: | ||
pull_request: | ||
types: [opened, reopened, synchronize, ready_for_review] | ||
schedule: | ||
- cron: "0 12 * * 0" # 3 AM PST = 12 PM UDT, runs sundays | ||
workflow_dispatch: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
# https://github.com/marketplace/actions/aqua-security-trivy | ||
trivy: | ||
name: Trivy Security Scan | ||
if: github.event_name != 'pull_request' || !github.event.pull_request.draft | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
- uses: actions/checkout@v4 | ||
|
||
- name: Run Trivy vulnerability scanner in repo mode | ||
uses: aquasecurity/[email protected] | ||
with: | ||
format: "sarif" | ||
output: "trivy-results.sarif" | ||
ignore-unfixed: true | ||
scan-type: "fs" | ||
scanners: "vuln,secret,config" | ||
severity: "CRITICAL,HIGH" | ||
|
||
- name: Upload Trivy scan results to GitHub Security tab | ||
uses: github/codeql-action/upload-sarif@v2 | ||
with: | ||
sarif_file: "trivy-results.sarif" |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ name: Pull Request | |
|
||
on: | ||
pull_request: | ||
workflow_dispatch: | ||
merge_group: | ||
|
||
concurrency: | ||
group: ${{ github.workflow }}-${{ github.ref }} | ||
|
@@ -42,14 +42,6 @@ jobs: | |
strategy: | ||
matrix: | ||
package: [api, frontend, database] | ||
include: | ||
- package: frontend | ||
triggers: ('frontend/') | ||
- package: api | ||
triggers: ('api/') | ||
- package: database | ||
triggers: ('database/') | ||
|
||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: bcgov-nr/[email protected] | ||
|
@@ -58,7 +50,7 @@ jobs: | |
tag: ${{ github.sha }} | ||
tag_fallback: test | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
triggers: ${{ matrix.triggers }} | ||
triggers: ('${{ matrix.package }}/') | ||
|
||
- uses: shrink/actions-docker-registry-tag@v3 | ||
with: | ||
|
@@ -77,12 +69,11 @@ jobs: | |
- name: Deploy to OpenShift | ||
shell: bash | ||
run: | | ||
# Allow pipefail, since we could be catching oc create errors | ||
# Expand for deployment steps | ||
set +o pipefail | ||
# Login to OpenShift (NOTE: project command is a safeguard) | ||
oc login --token=${{ secrets.oc_token }} --server=${{ vars.oc_server }} | ||
oc project ${{ vars.oc_namespace }} | ||
oc project ${{ vars.oc_namespace }} # Safeguard! | ||
|
||
# Deploy Helm Chart | ||
cd charts/pubcode | ||
|
@@ -121,26 +112,9 @@ jobs: | |
--set-string global.env.VITE_SCHEMA_BRANCH=${{ github.event.pull_request.head.ref }} \ | ||
--set-string namespace="${{ vars.oc_namespace }}" -f values.yaml --timeout 5m . | ||
|
||
cypress-e2e: | ||
name: Cypress end to end test | ||
needs: | ||
- deploys | ||
runs-on: ubuntu-22.04 | ||
strategy: | ||
matrix: | ||
browser: [ chrome, edge ] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
name: Checkout | ||
- uses: cypress-io/github-action@v5 | ||
name: Cypress run | ||
with: | ||
config: pageLoadTimeout=10000,baseUrl=https://pubcode-${{ github.event.number }}.apps.silver.devops.gov.bc.ca/ | ||
working-directory: ./frontend | ||
browser: ${{ matrix.browser }} | ||
- uses: actions/upload-artifact@v3 | ||
if: failure() | ||
with: | ||
name: cypress-screenshots | ||
path: ./frontend/cypress/screenshots | ||
if-no-files-found: ignore # 'warn' or 'error' are also available, defaults to `warn` | ||
tests: | ||
name: Tests | ||
needs: [deploys] | ||
uses: ./.github/workflows/.tests.yml | ||
with: | ||
target: ${{ github.event.number }} |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
This file was deleted.
Oops, something went wrong.