Skip to content

fix: change populate with db push in github deploy action file. #51

fix: change populate with db push in github deploy action file.

fix: change populate with db push in github deploy action file. #51

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