Skip to content

Build(deps): bump the npm_and_yarn group across 1 directory with 7 updates #118

Build(deps): bump the npm_and_yarn group across 1 directory with 7 updates

Build(deps): bump the npm_and_yarn group across 1 directory with 7 updates #118

Workflow file for this run

name: Run Tests
on:
push:
branches:
- develop
pull_request:
workflow_call:
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v5
- name: Set up Node.js
uses: actions/setup-node@v6
with:
node-version: "22.x"
- name: Install pnpm
run: |
corepack enable
corepack install
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Generate Prisma Client
run: npx prisma generate
- name: Run eslint
run: pnpm lint
- name: Run prettier:check
run: pnpm format:check
- name: Run typecheck
run: pnpm typecheck
- name: Run tests
run: pnpm test