Skip to content

Bump typescript-eslint from 8.59.1 to 8.59.2 in /web-client #911

Bump typescript-eslint from 8.59.1 to 8.59.2 in /web-client

Bump typescript-eslint from 8.59.1 to 8.59.2 in /web-client #911

---
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