Skip to content

[MDS-5707] Added history view to Tailings Storage Facilities #1892

[MDS-5707] Added history view to Tailings Storage Facilities

[MDS-5707] Added history view to Tailings Storage Facilities #1892

Workflow file for this run

name: CORE WEB - Unit Tests
on:
workflow_dispatch:
pull_request:
paths:
- services/common/**
- services/core-web/**
jobs:
tests-unit-frontend:
name: tests-unit-frontend
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-core-web
restore-keys: mds-core-web
- uses: actions/setup-node@v2
with:
node-version: 20.x
- name: Upgrade yarn
run: npm install -g yarn
- 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 frontend tests
run: cd services/core-web/ && yarn && yarn test
run-sonar-scan:
name: Run SonarCloud Scan
if: success()
uses: ./.github/workflows/sonarcloud-scan.yaml
with:
project-dir: services/core-web
secrets: inherit