mirror of
https://github.com/bitwarden/directory-connector
synced 2025-12-05 23:53:21 +00:00
78 lines
2.6 KiB
YAML
78 lines
2.6 KiB
YAML
name: Integration Testing
|
|
|
|
on:
|
|
workflow_dispatch:
|
|
push:
|
|
branches:
|
|
- "main"
|
|
paths:
|
|
- ".github/workflows/integration-test.yml" # this file
|
|
- "src/services/ldap-directory.service*" # we only have integration for LDAP testing at the moment
|
|
- "./utils/**/*" # any change to test fixtures
|
|
- "./docker-compose.yml" # any change to Docker configuration
|
|
- "./package.json" # dependencies
|
|
pull_request:
|
|
paths:
|
|
- ".github/workflows/integration-test.yml" # this file
|
|
- "src/services/ldap-directory.service*" # we only have integration for LDAP testing at the moment
|
|
- "./utils/**/*" # any change to test fixtures
|
|
- "./docker-compose.yml" # any change to Docker configuration
|
|
- "./package.json" # dependencies
|
|
permissions:
|
|
contents: read
|
|
checks: write # required by dorny/test-reporter to upload its results
|
|
jobs:
|
|
testing:
|
|
name: Run tests
|
|
if: ${{ startsWith(github.head_ref, 'version_bump_') == false }}
|
|
runs-on: ubuntu-22.04
|
|
|
|
steps:
|
|
- name: Check out repo
|
|
uses: actions/checkout@08c6903cd8c0fde910a37f88322edcfb5dd907a8 # v5.0.0
|
|
with:
|
|
persist-credentials: false
|
|
|
|
- name: Get Node version
|
|
id: retrieve-node-version
|
|
run: |
|
|
NODE_NVMRC=$(cat .nvmrc)
|
|
NODE_VERSION=${NODE_NVMRC/v/''}
|
|
echo "node_version=$NODE_VERSION" >> "$GITHUB_OUTPUT"
|
|
|
|
- name: Set up Node
|
|
uses: actions/setup-node@a0853c24544627f65ddf259abe73b1d18a591444 # v5.0.0
|
|
with:
|
|
cache: 'npm'
|
|
cache-dependency-path: '**/package-lock.json'
|
|
node-version: ${{ steps.retrieve-node-version.outputs.node_version }}
|
|
|
|
- name: Install Node dependencies
|
|
run: npm ci
|
|
|
|
- name: Install mkcert
|
|
run: |
|
|
sudo apt-get update
|
|
sudo apt-get -y install mkcert
|
|
|
|
- name: Setup LDAP integration tests
|
|
run: npm run test:integration:setup
|
|
|
|
- name: Run LDAP integration tests
|
|
run: npx jest ldap-directory.service.integration.spec.ts --coverage
|
|
|
|
- name: Report test results
|
|
uses: dorny/test-reporter@dc3a92680fcc15842eef52e8c4606ea7ce6bd3f3 # v2.1.1
|
|
if: ${{ github.event.pull_request.head.repo.full_name == github.repository && !cancelled() }}
|
|
with:
|
|
name: Test Results
|
|
path: "junit.xml"
|
|
reporter: jest-junit
|
|
fail-on-error: true
|
|
|
|
- name: Upload coverage to codecov.io
|
|
uses: codecov/codecov-action@5a605bd92782ce0810fa3b8acc235c921b497052 # v5.2.0
|
|
|
|
- name: Upload results to codecov.io
|
|
uses: codecov/test-results-action@4e79e65778be1cecd5df25e14af1eafb6df80ea9 # v1.0.2
|