You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
- Updated .gitignore to include Playwright-related directories and output files.
- Removed the test command from the Dockerfile to streamline the build process.
- Modified Makefile targets to improve clarity and remove unnecessary dependencies.
- Updated nuxt.config.ts to adjust HTTPS settings for development and improve Playwright compatibility.
- Added Playwright installation scripts to package.json for easier setup.
- Enhanced GitHub Actions workflow to better manage dependencies and testing in Docker.
These changes improve the development workflow and ensure better integration with Playwright for end-to-end testing.
# Volume dédié : évite de monter les node_modules du mac dans le conteneur Linux.
11
-
# Flux : pas de yarn install sur le Mac — make exec puis yarn install / yarn add (lockfile + package.json sur l’hôte via le montage).
12
-
# Puis make build | make dev | make test (Vitest) | make verify (tests + build Nuxt).
11
+
# Réseau Docker « dev » : créer une fois (make network-dev ou docker network create dev).
12
+
# Flux : pas de yarn sur le Mac — make exec puis yarn install ; e2e / CI : docker dans .github/workflows/lint.yml.
13
+
# Chaque « make test » / « verify » : nouveau conteneur → yarn playwright:install-deps puis tests (prérequis : node_modules + cache Playwright remplis, ex. étapes du workflow ou exec).
Copy file name to clipboardExpand all lines: README.md
+3Lines changed: 3 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,8 @@
1
1
# sesame-gestion-mdp
2
2
Gestion des mot de passe sesame
3
+
4
+
Les commandes **yarn** (install, test, build, etc.) se font dans **Docker** : `make build` puis `make exec`, puis par exemple `yarn install` et `yarn playwright:install` dans le shell du conteneur. Sur la CI, **`make ci-github`** enchaîne tout sans yarn sur le runner.
0 commit comments