-
Notifications
You must be signed in to change notification settings - Fork 1
98 lines (79 loc) · 2.39 KB
/
dev-pipeline.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
name: Dev Env - Test + Build Pipeline
on:
push:
branches:
- "dev" # Switch this to environment variable ${{ vars.environemnt }}
paths-ignore:
- .github/**
- .husky/**
- load-testing/**
- "*.md"
- "*.yaml"
- /.*
workflow_dispatch:
jobs:
codeql-scan:
name: codeql-scan
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
strategy:
fail-fast: false
matrix:
language: [ 'javascript' ]
steps:
- name: Checkout repository
uses: actions/checkout@v4
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
- name: Autobuild
uses: github/codeql-action/autobuild@v3
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v3
zap-owasp:
uses: bcgov/pipeline-templates/.github/workflows/owasp-scan.yaml@main
with:
ZAP_SCAN_TYPE: 'base' # Accepted values are base and full.
ZAP_TARGET_URL: https://bc-emli-pin-mgmt-be-c82b4c-dev.apps.silver.devops.gov.bc.ca/
ZAP_DURATION: '2'
ZAP_MAX_DURATION: '5'
ZAP_GCP_PUBLISH: false
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.20.4]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
- name: Install dependencies
run: npm install
# - name: Run linter
# run: npm run lint
- name: Run tests
run: npm test
- name: Build
run: npm run build
- name: Login to Openshift
shell: bash
run: |
oc login --server=${{ secrets.OPENSHIFT_LOGIN_REGISTRY }} --token=${{ secrets.OPENSHIFT_SA_TOKEN_DEV }}
- name: Switch to correct project environment in Openshift
shell: bash
run: |
oc project ${{ secrets.OPENSHIFT_NAMESPACE_DEV }}
- name: Build image on OpenShift
shell: bash
run: |
oc start-build ${{ secrets.OPENSHIFT_BUILDCONFIG }}