Bump the minor-updates group across 1 directory with 24 updates #1188
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: CI | |
on: | |
- pull_request | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
services: | |
postgres: | |
image: postgres:16 | |
env: | |
POSTGRES_PASSWORD: postgres | |
ports: | |
- 5432:5432 | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
- name: Use Node 22 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: "22.x" | |
- name: Cache node modules | |
uses: actions/[email protected] | |
with: | |
path: "**/node_modules" | |
key: ${{ runner.os }}-build-${{ hashFiles('package-lock.json') }} | |
- name: Install Dependencies | |
run: npm ci | |
- name: Build | |
run: npm run build | |
- name: Lint | |
run: npm run lint | |
- name: Test | |
run: node scripts/generate-keys.js && npm run test | |
env: | |
PORT: 12000 | |
PGHOST: 127.0.0.1 | |
PGUSER: postgres | |
PGPASSWORD: postgres | |
PGPORT: 5432 | |
PGSSL: false |