Skip to content

chore(deps): update actions/checkout digest to a5ac7e5 #323

chore(deps): update actions/checkout digest to a5ac7e5

chore(deps): update actions/checkout digest to a5ac7e5 #323

Workflow file for this run

name: build
on:
pull_request:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:14.11-alpine
ports:
- 5432:5432
env:
POSTGRES_USER: admin123
POSTGRES_PASSWORD: admin123
steps:
- uses: actions/checkout@44c2b7a8a4ea60a981eaca3cf939b5f4305c123b # v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 20
cache: npm
- name: npm install, build, and test
run: |
npm ci
npm run compile
npm run migrate:test
npm run test
env:
DATABASE_URL: postgresql://admin123:admin123@localhost:5432/test
CI: true