Skip to content

Users/alkerezs/implement column descriptors #186

Users/alkerezs/implement column descriptors

Users/alkerezs/implement column descriptors #186

Workflow file for this run

name: PR
on:
pull_request:
branches:
- main
jobs:
build_and_test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Check types
run: npm run typecheck
- name: Lint
run: npm run lint -- --quiet
- name: Unit tests
run: npm run test:ci
- name: Build
run: npm run build