Skip to content

Commit

Permalink
splitting front and backend
Browse files Browse the repository at this point in the history
  • Loading branch information
rachellerathbone committed Dec 12, 2023
1 parent 54e6b1a commit 3370b64
Showing 1 changed file with 12 additions and 3 deletions.
15 changes: 12 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,17 +14,26 @@ jobs:

steps:
- name: Checkout repository
uses: actions/checkout@v2
uses: actions/checkout@v3

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2

- name: Build Node.js and React project
# Install dependencies for backend (Node.js)
- name: Install Node.js backend dependencies
run: |
cd app
npm install
working-directory: app

# Build frontend (React)
- name: Build React frontend
run: |
cd app/jenkins-for-jira-ui
npm install
npm run build
working-directory: .
working-directory: app/jenkins-for-jira-ui

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2

0 comments on commit 3370b64

Please sign in to comment.