Skip to content
This repository has been archived by the owner on Nov 18, 2024. It is now read-only.

Commit

Permalink
Merge pull request #4 from MeasureAuthoringTool/MAT-6341
Browse files Browse the repository at this point in the history
MAT-6341 Verify dependencies/dev-dependencies for madie-frontend-template
  • Loading branch information
adongare authored Feb 19, 2024
2 parents ceab410 + e31b9e7 commit b959a84
Show file tree
Hide file tree
Showing 9 changed files with 18,468 additions and 32 deletions.
2 changes: 1 addition & 1 deletion .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Code owners:
* @AndrewBird81 @adongare @jkotanchik-SB @serhii-ilin @gregory-akins @RohitKandimalla
* @MeasureAuthoringTool/madie-developers
2 changes: 1 addition & 1 deletion .github/workflows/gitleaks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ jobs:
gitleaks_scan:
runs-on: ubuntu-latest
env:
REPO: https://github.com/MeasureAuthoringTool/madie-layout
REPO: https://github.com/MeasureAuthoringTool/madie-frontend-template
REMOTE_EXCLUDES_URL: https://raw.githubusercontent.com/semanticbits/bmat-gitleaks-automation/master/madie-layout/gitleaks.toml
GITLEAKS_VERSION: v7.5.0
steps:
Expand Down
18 changes: 9 additions & 9 deletions .github/workflows/unit_test_coverage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,15 +22,15 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v4

- name: Use Node.js 14.x
uses: actions/setup-node@v2-beta
- name: Use Node.js 18.x
uses: actions/setup-node@v4
with:
node-version: 14.x
node-version: 18.x

- name: Cache node modules
uses: actions/cache@v2
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
Expand Down Expand Up @@ -60,7 +60,7 @@ jobs:
run: npm run-script coverage

- name: Store the coverage report as an artifact
uses: actions/upload-artifact@v2
uses: actions/upload-artifact@v4
with:
name: coverage
path: src/coverage/lcov.info
Expand All @@ -71,7 +71,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download coverage artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: coverage

Expand All @@ -87,12 +87,12 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Download coverage artifact
uses: actions/download-artifact@v2
uses: actions/download-artifact@v4
with:
name: coverage

- name: Upload code coverage to Codecov
uses: codecov/codecov-action@v2
uses: codecov/codecov-action@v4
with:
file: lcov.info
fail_ci_if_error: true
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# madie-frontend-template

This is a single-spa Application Template replace occurences of 'madie-frontend-template' with your application name. Also rename src/madie-madie-frontend-template.tsx with madie-madie-<your app>.tsx


This is a single-spa Application Template replace occurrences of
'madie-frontend-template' with your application name. Also rename
src/madie-madie-frontend-template.tsx with madie-madie-&lt;your app&gt;.tsx
1 change: 0 additions & 1 deletion local-dev-env/hosted-importmap.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"imports": {
"@madie/root-config": "//localhost:9000/madie-root-config.js",
"@madie/madie-layout": "//localhost:8500/madie-madie-layout.js",
"@madie/madie-editor": "//localhost:8501/madie-madie-editor.js",
"@madie/madie-auth": "//localhost:8502/madie-madie-auth.js"
}
}
1 change: 0 additions & 1 deletion local-dev-env/importmap.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
"imports": {
"@madie/root-config": "/madie-root-config.js",
"@madie/madie-layout": "//localhost:8500/madie-madie-layout.js",
"@madie/madie-editor": "/madie-editor/madie-madie-editor.js",
"@madie/madie-auth": "/madie-auth/madie-madie-auth.js"
}
}
Loading

0 comments on commit b959a84

Please sign in to comment.