[MDS-5947] Added ability to link a CRR to a HSRC code in core #1705
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
name: MINESPACE - Unit Tests | |
on: | |
pull_request: | |
paths: | |
- services/common/** | |
- services/minespace-web/** | |
jobs: | |
tests-unit-minespace: | |
name: tests-unit-minespace | |
runs-on: ubuntu-20.04 | |
steps: | |
- uses: actions/checkout@v3 | |
name: checkout | |
- uses: actions/cache@v3 | |
name: Cache yarn | |
with: | |
path: ./.yarn/cache | |
key: mds-minespace | |
restore-keys: mds-minespace | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 20.x | |
- name: Set Fontawesome token | |
run: | | |
yarn config set 'npmScopes["fortawesome"].npmAuthIdent' "${{ secrets.ARTIFACTORY_TOKEN }}" | |
yarn config set 'npmScopes["fortawesome"].npmAlwaysAuth' true | |
yarn config set 'npmScopes["fortawesome"].npmRegistryServer' "https://artifacts.developer.gov.bc.ca/artifactory/api/npm/m4c2-mds/" | |
- name: Install Dependencies | |
run: yarn install | |
- name: Run minespace tests | |
run: yarn workspace @mds/minespace-web test | |
run-sonar-scan: | |
name: Run SonarCloud Scan | |
if: success() | |
uses: ./.github/workflows/sonarcloud-scan.yaml | |
with: | |
project-dir: services/minespace-web | |
secrets: inherit |