Skip to content

Bump the github-actions group across 1 directory with 2 updates #1189

Bump the github-actions group across 1 directory with 2 updates

Bump the github-actions group across 1 directory with 2 updates #1189

Workflow file for this run

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