chore(deps): update postgres docker tag to v17 #3937
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: Build and test | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- '**' | |
jobs: | |
lint_and_typecheck: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20.5.1 | |
- name : Install pnpm | |
run: npm install -g pnpm | |
- name: Install dependencies | |
run: pnpm i | |
- name: lint all workspaces | |
run: pnpm run -r lint | |
- name: build all workspaces | |
run: pnpm run -r build | |
#- name: unit test (with coverage) | |
# run: pnpm run test:cov | |
#- name: e2e test | |
# run: pnpm run test:e2e |