Skip to content

chore: improve error logging when polling queries (#140) #519

chore: improve error logging when polling queries (#140)

chore: improve error logging when polling queries (#140) #519

Workflow file for this run

name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Lint
run: yarn lint:all
- name: Compile TypeScript
run: yarn tsc:full
- name: Run Tests
run: yarn test:all
- name: Run Audit
run: yarn audit --level high || true