Skip to content

fix: Primary key

fix: Primary key #4

Workflow file for this run

name: CI
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
jobs:
build:
runs-on: ubuntu-latest
env:
JWT_SECRET: ${{secrets.JWT_SECRET}}
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- name: Install modules
run: yarn
- name: Run tests
run: yarn test