mirror of
https://github.com/Infisical/infisical.git
synced 2026-01-08 23:18:05 -05:00
81 lines
2.5 KiB
YAML
81 lines
2.5 KiB
YAML
name: "Run backend BDD tests"
|
|
|
|
on:
|
|
pull_request:
|
|
types: [opened, synchronize]
|
|
paths:
|
|
- "backend/**"
|
|
- "!backend/README.md"
|
|
- "!backend/.*"
|
|
- "backend/.eslintrc.js"
|
|
workflow_call:
|
|
|
|
jobs:
|
|
check-be-pr:
|
|
name: Run BDD tests
|
|
runs-on: ubuntu-latest
|
|
timeout-minutes: 15
|
|
steps:
|
|
- name: Free up disk space
|
|
run: |
|
|
sudo rm -rf /usr/share/dotnet
|
|
sudo rm -rf /opt/ghc
|
|
sudo rm -rf "/usr/local/share/boost"
|
|
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
|
|
docker system prune -af
|
|
|
|
- name: ☁️ Checkout source
|
|
uses: actions/checkout@v3
|
|
- name: Install uv
|
|
uses: astral-sh/setup-uv@v5
|
|
- name: Install Python
|
|
run: uv python install
|
|
- uses: KengoTODA/actions-setup-docker-compose@v1
|
|
if: ${{ env.ACT }}
|
|
name: Install `docker compose` for local simulations
|
|
with:
|
|
version: "2.14.2"
|
|
- name: 🔧 Setup Node 20
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: "20"
|
|
cache: "npm"
|
|
cache-dependency-path: backend/package-lock.json
|
|
- name: Install dependencies
|
|
run: npm install
|
|
working-directory: backend
|
|
|
|
- name: Output .env file
|
|
run: |
|
|
echo "ACME_DEVELOPMENT_MODE=true" > .env
|
|
echo "ACME_FEATURE_ENABLED=true" >> .env
|
|
echo "ACME_DEVELOPMENT_HTTP01_CHALLENGE_HOST_OVERRIDES={\"localhost\": \"host.docker.internal:8087\"}" >> .env
|
|
- name: Build Infisical backend Docker image with caching
|
|
uses: docker/bake-action@v5
|
|
with:
|
|
files: docker-compose.dev.yml
|
|
targets: backend
|
|
push: true # Or false if just building locally
|
|
no-cache: false
|
|
set: |
|
|
*.cache-from=type=gha,scope=infisical-backend-bdd-tests
|
|
*.cache-to=type=gha,mode=max,scope=infisical-backend-bdd-tests
|
|
- name: Start Infisical
|
|
run: docker compose -f docker-compose.dev.yml up -d backend
|
|
- name: Wait for API to be ready
|
|
uses: nick-fields/retry@v3
|
|
with:
|
|
timeout_seconds: 60
|
|
max_attempts: 30
|
|
command: |
|
|
curl -f -X GET http://localhost:8080/api/v1/admin/config
|
|
- name: Run bdd tests
|
|
run: npm run test:bdd
|
|
working-directory: backend
|
|
env:
|
|
INFISICAL_API_URL: http://localhost:8080
|
|
BOOTSTRAP_INFISICAL: "1"
|
|
- name: cleanup
|
|
run: |
|
|
docker compose -f "docker-compose.dev.yml" down
|