Skip to content

fix(build): dist not including js #22

fix(build): dist not including js

fix(build): dist not including js #22

Workflow file for this run

name: Run tests
on: [push, pull_request]
permissions:
contents: read
jobs:
run-tests:
name: Run tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
- name: Install dependendencies
run: npm i
- name: Generate Prisma client
run: npm run test:generate-client
- name: Generate Database client
run: npm run test:push-schema
- name: Run tests
run: npm run test