Skip to content

Commit

Permalink
refactor: rename folders
Browse files Browse the repository at this point in the history
  • Loading branch information
gregory-j-baker committed Dec 20, 2024
1 parent 6d25f34 commit e972bf9
Show file tree
Hide file tree
Showing 186 changed files with 19 additions and 19 deletions.
2 changes: 1 addition & 1 deletion .github/dependabot.yaml
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
version: 2
updates:
- package-ecosystem: npm
directory: /future-sir-frontend
directory: /frontend
schedule:
interval: daily
groups:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,20 +8,20 @@ env:
CI: true

jobs:
build-future-sir-frontend:
build-frontend:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 22.x
- run: npm clean-install
working-directory: future-sir-frontend
working-directory: frontend
- run: npm run test -- --coverage
working-directory: future-sir-frontend
working-directory: frontend
- run: npx playwright install --with-deps
working-directory: future-sir-frontend
working-directory: frontend
- run: npm run test:e2e
working-directory: future-sir-frontend
- run: podman build --tag future-sir-frontend --file containerfile .
working-directory: future-sir-frontend
working-directory: frontend
- run: podman build --file containerfile .
working-directory: frontend
8 changes: 4 additions & 4 deletions .github/workflows/pr-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -25,9 +25,9 @@ jobs:
});
const files = response.data.map(file => file.filename);
const hasFrontendChanges = files.some(file => file.startsWith('future-sir-frontend/'));
const hasGitopsChanges = files.some(file => file.startsWith('future-sir-gitops/'));
const hasInfrastructureChanges = files.some(file => file.startsWith('future-sir-infrastructure/'));
const hasFrontendChanges = files.some(file => file.startsWith('frontend/'));
const hasGitopsChanges = files.some(file => file.startsWith('gitops/'));
const hasInfrastructureChanges = files.some(file => file.startsWith('infrastructure/'));
core.setOutput('frontend', hasFrontendChanges);
core.setOutput('gitops', hasGitopsChanges);
Expand All @@ -36,4 +36,4 @@ jobs:
build-frontend:
needs: check-changes
if: ${{ needs.check-changes.outputs.frontend == 'true' }}
uses: ./.github/workflows/build-fsir-frontend.yaml
uses: ./.github/workflows/build-frontend.yaml
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,14 +1,14 @@
# Future Social Insurance Registry

This repository houses the source code for the Future Social Insurance Registry (FSIR) project.
This repository houses the source code for the Future Social Insurance Registry (FSIR) project.

**Projects:**

* **[Frontend](future-sir-frontend):**
* **[Frontend](frontend):**
* Contains the frontend application for the FSIR, built with [React Router](https://reactrouter.com/).
* **[GitOps](future-sir-gitops):**
* **[GitOps](gitops):**
* Implements GitOps principles for deploying and managing the FSIR infrastructure and applications.
* **[Infrastructure](future-sir-infrastructure):**
* **[Infrastructure](infrastructure):**
* Defines the infrastructure for the FSIR.

**Contributing:**
Expand Down
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
6 changes: 3 additions & 3 deletions future-sir.code-workspace
Original file line number Diff line number Diff line change
@@ -1,13 +1,13 @@
{
"folders": [
{
"path": "future-sir-frontend"
"path": "frontend"
},
{
"path": "future-sir-gitops"
"path": "gitops"
},
{
"path": "future-sir-infrastructure"
"path": "infrastructure"
},
],
}
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 comments on commit e972bf9

Please sign in to comment.