Skip to content

Merge pull request #22629 from mvdbeek/improve-sse-reconnect-handling #14093

Merge pull request #22629 from mvdbeek/improve-sse-reconnect-handling

Merge pull request #22629 from mvdbeek/improve-sse-reconnect-handling #14093

Workflow file for this run

name: Client linting
on:
push:
paths:
- 'client/**'
- '.github/workflows/js_lint.yaml'
pull_request:
paths:
- 'client/**'
- '.github/workflows/js_lint.yaml'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
client-unit-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v6
with:
persist-credentials: false
- name: Read Node.js version
id: node-version
run: echo "version=$(cat 'client/.node_version')" >> $GITHUB_OUTPUT
- name: Setup node
uses: actions/setup-node@v6
with:
node-version: ${{ steps.node-version.outputs.version }}
- name: Setup pnpm
uses: pnpm/action-setup@v5
with:
package_json_file: client/package.json
- run: pnpm install --frozen-lockfile
working-directory: client
- name: Run ESLint
run: pnpm run eslint
working-directory: client
- name: Run prettier checks
run: pnpm run format-check
working-directory: client
- name: Run vue-tsc
working-directory: client
run: pnpm type-check