fix: typo in fr translation #6313
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: Frontend Linters | |
| permissions: | |
| contents: read | |
| on: | |
| pull_request: | |
| paths: | |
| - "frontend/**" | |
| # Cancel older in-progress runs for the same PR or the same ref (branch) | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.pull_request.number || github.ref }} | |
| cancel-in-progress: true | |
| env: | |
| GITHUB_WORKFLOW: github_actions | |
| UBUNTU_VERSION: "ubuntu-24.04" | |
| NODE_VERSION: "22" | |
| jobs: | |
| lint-community: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| working-directory: ./frontend | |
| PUBLIC_BACKEND_API_URL: "http://127.0.0.1:8000/api" | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| node-version: ["22"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install latest pnpm | |
| working-directory: ${{env.working-directory}} | |
| run: | | |
| npm install -g pnpm && | |
| pnpm --version && | |
| pnpm list -g --depth 0 | |
| - name: Install prettier | |
| working-directory: ${{env.working-directory}} | |
| run: pnpm add --save-dev prettier | |
| - name: Run prettier | |
| working-directory: ${{env.working-directory}} | |
| run: pnpm exec prettier --check . | |
| # NOTE: The following will be uncommented once the codebase is cleaned up | |
| # - name: Install dependencies | |
| # working-directory: ${{env.working-directory}} | |
| # run: pnpm i --frozen-lockfile | |
| # - name: Run prettier check & eslint | |
| # working-directory: ${{env.working-directory}} | |
| # run: pnpm run lint | |
| # - name: Run svelte-check | |
| # working-directory: ${{env.working-directory}} | |
| # run: pnpm run check | |
| lint-enterprise: | |
| runs-on: ubuntu-24.04 | |
| env: | |
| working-directory: ./frontend | |
| PUBLIC_BACKEND_API_URL: "http://127.0.0.1:8000/api" | |
| strategy: | |
| max-parallel: 4 | |
| matrix: | |
| node-version: ["22"] | |
| steps: | |
| - uses: actions/checkout@v3 | |
| - name: Set up node ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - name: Install latest pnpm | |
| working-directory: ${{env.working-directory}} | |
| run: | | |
| npm install -g pnpm && | |
| pnpm --version && | |
| pnpm list -g --depth 0 | |
| - name: Install prettier | |
| working-directory: ${{env.working-directory}} | |
| run: pnpm add --save-dev prettier | |
| - name: Run prettier | |
| working-directory: ${{env.working-directory}} | |
| run: pnpm exec prettier --check ../enterprise/frontend | |
| # NOTE: The following will be uncommented once the codebase is cleaned up | |
| # - name: Install dependencies | |
| # working-directory: ${{env.working-directory}} | |
| # run: pnpm i --frozen-lockfile | |
| # - name: Run prettier check & eslint | |
| # working-directory: ${{env.working-directory}} | |
| # run: pnpm run lint | |
| # - name: Run svelte-check | |
| # working-directory: ${{env.working-directory}} | |
| # run: pnpm run check |