Bump typescript-eslint from 8.59.1 to 8.59.2 in /web-client #911
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: Test application | |
| # yamllint disable-line rule:truthy | |
| on: | |
| push: | |
| branches: | |
| - dev | |
| pull_request: | |
| types: | |
| - opened | |
| - synchronize | |
| workflow_dispatch: {} | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| name: Test application | |
| container: | |
| image: ghcr.io/${{ github.repository }}/ci-build-arch:latest | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v6 | |
| with: | |
| fetch-depth: 0 | |
| - name: Mark workspace safe for git | |
| run: git config --global --add safe.directory . | |
| - name: Setup Go | |
| uses: ./.github/actions/setup-go | |
| - name: Build web client | |
| uses: ./.github/actions/build-client-web | |
| - name: Run tests | |
| run: make test | |
| shell: bash |