Ajout de la visualisation des emails envoyés #27
Workflow file for this run
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| name: Build Frontend App | |
| on: | |
| push: | |
| branches: | |
| - main | |
| - develop | |
| pull_request: | |
| branches: | |
| - main | |
| - develop | |
| jobs: | |
| build: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout du repo | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| cache-dependency-path: front-vite/package-lock.json | |
| - name: Install des dépendances | |
| working-directory: front-vite | |
| run: npm ci | |
| - name: Create config.js from sample | |
| working-directory: front-vite/public/config | |
| run: cp config.js.sample config.js | |
| - name: Build de l'application | |
| working-directory: front-vite | |
| run: npm run build |