chore(deps): bump path-to-regexp from 6.2.2 to 6.3.0 #410
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: Node.js CI | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
env: | |
NODE_VERSION: 20.x | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ env.NODE_VERSION }} | |
- 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: [18.x, 20.x, 22.x] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
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: Upload coverage | |
uses: codecov/codecov-action@v3 |