build(deps-dev): bump @solvro/config from 1.13.4 to 2.3.4 #485
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 - CI | |
| on: | |
| push: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/frontend_ci.yaml" | |
| - "*" | |
| - "frontend/**" | |
| pull_request: | |
| branches: ["main"] | |
| paths: | |
| - ".github/workflows/frontend_ci.yaml" | |
| - "*" | |
| - "frontend/**" | |
| jobs: | |
| commitlint: | |
| name: Commitlint | |
| if: github.event_name == 'pull_request' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Check out | |
| uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - name: Install | |
| uses: ./.github/composite-actions/install | |
| - name: Run commitlint check | |
| run: npx commitlint --from ${{ github.event.pull_request.base.sha }} | |
| lint: | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: ./.github/composite-actions/install | |
| - name: Lint | |
| run: npm run lint | |
| - name: Type check | |
| run: npm run typecheck | |
| if: always() | |
| prettier: | |
| name: Format | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: ./.github/composite-actions/install | |
| - name: Format check | |
| run: npm run format:check | |
| deadcode: | |
| name: Find deadcode | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: ./.github/composite-actions/install | |
| - name: Find deadcode | |
| run: npm run knip | |
| build: | |
| name: Test build | |
| runs-on: ubuntu-latest | |
| defaults: | |
| run: | |
| working-directory: frontend | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v4 | |
| - name: Setup node | |
| uses: ./.github/composite-actions/install | |
| - name: Build | |
| run: npm run build | |
| env: | |
| USOS_CONSUMER_KEY: hello | |
| USOS_CONSUMER_SECRET: jello | |
| NEXT_PUBLIC_API_URL: http://localhost:3333 |