Skip to content

chore: update deps and upgrade Node.js to 22 (#401) #422

chore: update deps and upgrade Node.js to 22 (#401)

chore: update deps and upgrade Node.js to 22 (#401) #422

Workflow file for this run

name: Node.js CI
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: package.json
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run eslint
- name: Run Prettier
run: npm run prettier
test:
runs-on: ubuntu-latest
services:
couchdb:
image: couchdb:latest
env:
COUCHDB_USER: admin
COUCHDB_PASSWORD: admin
ports:
- 5984:5984
ldap:
image: ghcr.io/zakodium/ldap-with-users:1
ports:
- 389:389
strategy:
fail-fast: false
matrix:
node-version: [20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Setup test database
run: bash setupDatabase.sh
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test-coverage
- name: Send coverage report to Codecov
uses: codecov/codecov-action@v5
with:
fail_ci_if_error: true