Skip to content

deploy fixed.

deploy fixed. #56

Workflow file for this run

name: CI tests
on:
push:
branches:
- main
pull_request:
branches:
- main
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: npm install
- name: Check TypeScript types
run: npm run type-check
# - name: Run tests
# run: npm test