Skip to content

fix: remove HTML from acceptable content types for trace recording (#… #511

fix: remove HTML from acceptable content types for trace recording (#…

fix: remove HTML from acceptable content types for trace recording (#… #511

Workflow file for this run

name: Lint
on:
push:
branches: [main]
pull_request:
branches: [main]
workflow_dispatch: {}
jobs:
lint:
name: Lint and Type Check
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version: 22
- name: Cache node modules
uses: actions/cache@v4
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-npm-
- name: Install dependencies
run: npm install
# disabled for now since we need to fix the eslint issues
# - name: Run linter
# run: npm run lint
- name: Run type check
run: npm run typecheck
- name: Build
run: npm run build