Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
35 changes: 35 additions & 0 deletions .github/workflows/backend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,35 @@
# .github/workflows/backend.yml
name: BUG Backend
permissions:
contents: read
on:
push:
branches:
- "**"
paths-ignore:
- "**/README.md"
- "docs/**"
pull_request:
branches:
- "main"
paths-ignore:
- "**/README.md"
- "docs/**"

jobs:
backend:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
defaults:
run:
working-directory: ./src
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
name: Backend Install & Test using Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm test
36 changes: 36 additions & 0 deletions .github/workflows/frontend.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,36 @@
# .github/workflows/frontend.yml
name: BUG Frontend
permissions:
contents: read
on:
push:
branches:
- "**"
paths-ignore:
- "**/README.md"
- "docs/**"
pull_request:
branches:
- "main"
paths-ignore:
- "**/README.md"
- "docs/**"

jobs:
frontend:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [20]
defaults:
run:
working-directory: ./src/client
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
name: Frontend Build & Test using Node.js ${{ matrix.node-version }}
with:
node-version: ${{ matrix.node-version }}
- run: npm install --legacy-peer-deps
- run: npm test
- run: CI=false npm run build --if-present
7 changes: 2 additions & 5 deletions src/client/config-overrides.js
Original file line number Diff line number Diff line change
Expand Up @@ -13,10 +13,7 @@ module.exports = function (config, env) {
const overriddenConfig = override(
removeModuleScopePlugin(),
disableEsLint(),
babelInclude([
path.resolve("src"),
path.resolve("../modules"),
]),
babelInclude([path.resolve("src"), path.resolve("../modules")]),
addWebpackAlias({
"@modules": path.resolve("../modules"),
"@components": path.resolve("src/components"),
Expand All @@ -37,4 +34,4 @@ module.exports = function (config, env) {
};

return overriddenConfig;
};
};
1,832 changes: 748 additions & 1,084 deletions src/client/package-lock.json

Large diffs are not rendered by default.

Loading
Loading