Skip to content

Fix test coverage and clean up warnings #29

Fix test coverage and clean up warnings

Fix test coverage and clean up warnings #29

Workflow file for this run

name: CI
on:
push:
branches: [ main, master ]
pull_request:
branches: [ main, master ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run type checker
run: npm run typecheck
- name: Run tests with coverage
run: npm test -- --coverage --coverageReporters=text
- name: Validate extension build
run: npm run build