fix(indemnité de licenciement): ajout de l'avenant pour la CC 275 (#6… #232
This file contains 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: 😎 PreProd | |
on: | |
workflow_dispatch: | |
push: | |
branches: | |
- "master" | |
- "main" | |
concurrency: | |
cancel-in-progress: true | |
group: ${{ github.workflow }}-${{ github.event_name }}-${{ github.event.ref }} | |
jobs: | |
socialgouv: | |
name: "🇫🇷 SocialGouv" | |
uses: socialgouv/workflows/.github/workflows/use-ks-gh-with-env-preproduction.yaml@v1 | |
secrets: inherit | |
e2e: | |
name: End-to-end testing | |
runs-on: ubuntu-latest | |
needs: [socialgouv] | |
steps: | |
- name: Checkout repository | |
uses: actions/checkout@v4 | |
- name: Set up Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: "yarn" | |
- name: Install dependencies | |
run: | | |
yarn install --immutable | |
- name: Run test e2e | |
run: | | |
TEST_BASEURL=https://code-du-travail-numerique-preprod.ovh.fabrique.social.gouv.fr TEST_MODE=heavy-and-light yarn test:e2e | |
- name: Archive generated screenshots | |
if: failure() | |
uses: actions/upload-artifact@v4 | |
with: | |
name: e2e-screenshots | |
path: | | |
packages/code-du-travail-frontend/cypress/screenshots |