Skip to content

Commit

Permalink
Fix tests/builds
Browse files Browse the repository at this point in the history
  • Loading branch information
BenLorantfy committed Oct 15, 2024
1 parent b70d4c6 commit 90304ec
Showing 1 changed file with 13 additions and 3 deletions.
16 changes: 13 additions & 3 deletions .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ on:
push:
branches: ['main']
pull_request:
branches: ['main', 'release/alpha', 'release/beta', 'release/next']
branches: ['main']

jobs:
test-and-build:
Expand All @@ -21,5 +21,15 @@ jobs:
node-version: 20
cache: 'pnpm'
- run: pnpm install
- run: cd packages/nestjs-zod && pnpm test
- run: cd packages/nestjs-zod &&pnpm build
- name: Build z
run: cd packages/z && pnpm build
- name: Test z
run: cd packages/z && pnpm test
- name: Test nestjs-zod
run: cd packages/nestjs-zod && pnpm test
- name: Build nestjs-zod
run: cd packages/nestjs-zod && pnpm build
- name: Build example app
run: cd packages/example && pnpm run build
- name: Test example app
run: cd packages/example && pnpm run test:e2e

0 comments on commit 90304ec

Please sign in to comment.