Skip to content

build(deps-dev): bump eslint from 8.57.0 to 9.3.0 #2265

build(deps-dev): bump eslint from 8.57.0 to 9.3.0

build(deps-dev): bump eslint from 8.57.0 to 9.3.0 #2265

Workflow file for this run

name: ci
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
build:
runs-on: ubuntu-latest
services:
postgres:
image: postgres:alpine
env:
POSTGRES_PASSWORD: postgres
ports:
- 5433:5432
options:
--health-cmd pg_isready --health-interval 10s --health-timeout 5s
--health-retries 5
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: |
npm ci
npm run db:migrate
npm run lint
npm test
build_windows:
runs-on: windows-latest
steps:
- name: Setup PostgreSQL for Linux/macOS/Windows
uses: ikalnytskyi/action-setup-postgres@v6
id: postgres
with:
port: 5433
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
- run: |
pg_isready
npm ci
npm run db:migrate
npm test
automerge:
needs: build
runs-on: ubuntu-latest
permissions:
pull-requests: write
contents: write
steps:
- uses: fastify/github-action-merge-dependabot@v3