feat(lrm): nettoyage du dossier public et mise à jour des libellés de connexion #364
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: LRM Client CI | |
| on: | |
| push: | |
| branches: | |
| - 'main' | |
| paths: | |
| - 'web/lrm/client/**' | |
| pull_request: | |
| branches: | |
| - '**' | |
| paths: | |
| - 'web/lrm/client/**' | |
| jobs: | |
| lint: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: web/lrm/client | |
| steps: | |
| - name: Checkout repository | |
| uses: actions/checkout@v3 | |
| - name: Set up Node.js | |
| uses: actions/setup-node@v3 | |
| with: | |
| node-version: 24.11 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Run ESLint | |
| run: npm run lint:js | |
| - name: Run Stylelint | |
| run: npm run lint:css | |
| - name: Run Prettier check | |
| run: npx prettier --check "**/*.{js,ts,vue,css,scss}" | |
| security-scan: | |
| uses: ./.github/workflows/security-scan.yml | |
| with: | |
| working-directory: 'web/lrm/client' | |
| project-type: 'nodejs' | |
| node-version: '24.11' | |
| component-name: 'lrm-client' | |
| scan-dockerfile: true | |
| semgrep-excludes: '--exclude=".nuxt"' |