Skip to content

chore(deps): pin postgres docker tag to 1cf9207 #635

chore(deps): pin postgres docker tag to 1cf9207

chore(deps): pin postgres docker tag to 1cf9207 #635

Workflow file for this run

name: Automated CI checks
on:
push:
branches:
- main
- dev
pull_request:
branches:
- main
- dev
jobs:
install-and-test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4
- name: Use Node.js 22.x
uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4
with:
node-version: 22.x
- name: Install dependencies
run: npm ci
- name: Run linter (eslint)
run: npm run lint
- name: Run type check (typescript)
run: npm run typecheck
- name: Run tests (Jest)
run: npm test