Skip to content

Commit

Permalink
Merge pull request #427 from bcgov/development
Browse files Browse the repository at this point in the history
Merge development into master
  • Loading branch information
SteveChapmanBCDX authored Sep 25, 2023
2 parents 77a6b50 + a9a0277 commit cec9939
Show file tree
Hide file tree
Showing 82 changed files with 4,246 additions and 1,419 deletions.
9 changes: 6 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- master

jobs:
unit-test:
test:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
steps:
Expand All @@ -16,9 +16,11 @@ jobs:
with:
node-version: "16"
cache: "yarn"
- run: |
mv sample.env .env
- run: docker compose pull test-db
- run: yarn
- run: npm run front-end:test
- run: npm run back-end:test
- run: npm t
yarn-build:
if: github.actor != 'dependabot[bot]'
runs-on: ubuntu-latest
Expand All @@ -37,6 +39,7 @@ jobs:
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v2
- run: yarn
- run: pip install pre-commit
- run: pre-commit run --all-files -v
commitlint:
Expand Down
5 changes: 3 additions & 2 deletions .pre-commit-config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -8,16 +8,17 @@ repos:
- id: check-json
- id: check-vcs-permalinks
- id: check-yaml
exclude: ^helm/templates/
args: [--allow-multiple-documents]
- id: end-of-file-fixer
- id: trailing-whitespace
- repo: https://github.com/pre-commit/mirrors-eslint
rev: v8.3.0
rev: v8.48.0
hooks:
- id: eslint
additional_dependencies:
[
"eslint@8.3.0",
"eslint@8.48.0",
"eslint-plugin-react",
"@typescript-eslint/eslint-plugin",
"typescript",
Expand Down
34 changes: 1 addition & 33 deletions .secrets.baseline
Original file line number Diff line number Diff line change
Expand Up @@ -97,13 +97,6 @@
"hashed_secret": "2992d572d50232bec5afe6991589d1fba15be002",
"is_verified": false,
"line_number": 48
},
{
"type": "Secret Keyword",
"filename": ".github/workflows/e2e.yml",
"hashed_secret": "8843d7f92416211de9ebb963ff4ce28125932878",
"is_verified": false,
"line_number": 51
}
],
"README.md": [
Expand Down Expand Up @@ -167,40 +160,15 @@
"line_number": 29
}
],
"helm/templates/dbSecret.yaml": [
{
"type": "Secret Keyword",
"filename": "helm/templates/dbSecret.yaml",
"hashed_secret": "35f5ce6b5834fb0ddaaf5ad9ace7da3793982b8b",
"is_verified": false,
"line_number": 7
}
],
"openshift/templates/database/patroni-digmkt-deploy.yaml": [
{
"type": "Secret Keyword",
"filename": "openshift/templates/database/patroni-digmkt-deploy.yaml",
"hashed_secret": "0303d145888470b11b50aea97264fad24b029fdc",
"is_verified": false,
"line_number": 147
}
],
"sample.env": [
{
"type": "Basic Auth Credentials",
"filename": "sample.env",
"hashed_secret": "2992d572d50232bec5afe6991589d1fba15be002",
"is_verified": false,
"line_number": 4
},
{
"type": "Secret Keyword",
"filename": "sample.env",
"hashed_secret": "8843d7f92416211de9ebb963ff4ce28125932878",
"is_verified": false,
"line_number": 5
}
]
},
"generated_at": "2023-01-29T04:59:44Z"
"generated_at": "2023-08-31T18:34:51Z"
}
11 changes: 6 additions & 5 deletions babel.config.js
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
module.exports = {
presets: [
['@babel/preset-env', {targets: {node: '10'}}],
'@babel/preset-typescript','@babel/preset-react'
],
};
presets: [
["@babel/preset-env", { targets: { node: "10" } }],
"@babel/preset-typescript",
"@babel/preset-react"
]
};
2 changes: 1 addition & 1 deletion commitlint.config.js
Original file line number Diff line number Diff line change
@@ -1 +1 @@
module.exports = {extends: ['@commitlint/config-conventional']}
module.exports = { extends: ["@commitlint/config-conventional"] };
Loading

0 comments on commit cec9939

Please sign in to comment.