Skip to content

fix(coverage): use dynamic import for ast-v8-to-istanbul to fix tsx #565

fix(coverage): use dynamic import for ast-v8-to-istanbul to fix tsx

fix(coverage): use dynamic import for ast-v8-to-istanbul to fix tsx #565

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