Skip to content

Commit

Permalink
fix: workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
jonat75 committed Aug 14, 2024
1 parent 3f00b8f commit 653e1df
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,13 +34,13 @@ jobs:
yarn setup-python
- name: Up for tests API
run: docker-compose up --build -d api db test_db
run: docker compose up --build -d api db test_db

- name: Check types
run: yarn check-all

- name: Down for tests API
run: docker-compose down
run: docker compose down

# TODO reenable. Next13 is not ready yet for proper testing
# + using a mix between pageDir and appDir make tests harder to dev
Expand Down
4 changes: 2 additions & 2 deletions packages/app/src/app/Footer.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,9 @@ const githubLink = {
} satisfies DsfrFooterProps.LinkList.Link;

const helpLink = {
text: "Consulter l'aide pour le calcul de l'index",
text: "Consulter l'aide concernant l'index",
linkProps: {
href: "/aide-simulation",
href: "/aide-index",
target: "_blank",
},
} satisfies DsfrFooterProps.LinkList.Link;
Expand Down

0 comments on commit 653e1df

Please sign in to comment.