diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 7d6eff4..a3b0525 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: Secure CI Workflow +name: Simple CI Workflow on: push: @@ -8,11 +8,7 @@ on: jobs: build: - runs-on: ubuntu-latest # Default runner (Linux) - - strategy: - matrix: - os: [ubuntu-latest, macos-latest, windows-latest] + runs-on: ubuntu-latest # Using Ubuntu as the runner steps: - uses: actions/checkout@v4 @@ -21,7 +17,7 @@ jobs: - name: Setup Node.js uses: actions/setup-node@v4 with: - node-version: '18' + node-version: '18' # Specify your Node.js version - name: Install Dependencies run: npm install @@ -30,13 +26,3 @@ jobs: run: npm run build env: NODE_ENV: production - - - name: Security Scan - run: npm audit --json | tee audit.json | jq '.' - continue-on-error: true - - - name: Lint Code - run: npm run lint - - - name: Static Code Analysis - run: npm run analyze