Fix pg repository #14
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test cf-eventhub | |
on: | |
pull_request: | |
branches: | |
- main | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 9 | |
run_install: false | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 22 | |
cache: "pnpm" | |
- run: pnpm install | |
- name: Build for type checking cf-eventhub | |
run: pnpm build | |
working-directory: cf-eventhub | |
- name: Build for type checking web-console | |
run: pnpm build | |
working-directory: web-console | |
- name: Build for type checking iac/pulumi | |
run: pnpm build | |
working-directory: iac/pulumi | |
- run: docker pull postgres:16.1 | |
- run: pnpm test | |
working-directory: cf-eventhub | |
- run: pnpm test-node | |
working-directory: cf-eventhub |