Skip to content

Throw WebServiceError instances and preserve error causes #5167

Throw WebServiceError instances and preserve error causes

Throw WebServiceError instances and preserve error causes #5167

Workflow file for this run

name: Lint
on:
pull_request:
push:
schedule:
- cron: '3 20 * * SUN'
permissions: {}
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@df4cb1c069e1874edd31b4311f1884172cec0e10 # v6.0.3
with:
persist-credentials: false
- uses: actions/setup-node@48b55a011bda9f5d6aeb4c2d9c7362e8dae4041e # v6.4.0
with:
node-version: 22
- name: Check that package-lock.json is valid JSON
run: jq empty package-lock.json
- name: Install npm packages
run: npm ci
- name: Run eslint
run: npm run lint
- name: Run prettier
run: npm run prettier:ci
- name: Test compile
run: npx tsc --noEmit