Skip to content

feat: 🔖 v2.0.0 - Remove Efí provider and simplify to static … #4

feat: 🔖 v2.0.0 - Remove Efí provider and simplify to static …

feat: 🔖 v2.0.0 - Remove Efí provider and simplify to static … #4

Workflow file for this run

name: CI/CD Pipeline
on:
push:
branches: [ main, develop ]
pull_request:
branches: [ main ]
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: 'npm'
- name: Install dependencies
run: npm ci
- name: Run linter
run: npm run lint
- name: Run tests
run: npm test
- name: Build project
run: npm run build
- name: Test build
run: node dist/index.js --help || true
security:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Run security audit
run: npm audit --audit-level=high
- name: Check for vulnerabilities
run: npm audit --audit-level=moderate
build-docker:
runs-on: ubuntu-latest
needs: [test, security]
if: github.ref == 'refs/heads/main'
steps:
- uses: actions/checkout@v4
- name: Set up Docker Buildx
uses: docker/setup-buildx-action@v3
- name: Build Docker image
run: |
npm ci
npm run build
docker build -t pix-mcp-server:latest .
- name: Test Docker image
run: |
docker run --rm pix-mcp-server:latest node -e "console.log('Docker build successful')"