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 6a388a6
Showing 1 changed file with 14 additions and 2 deletions.
16 changes: 14 additions & 2 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,11 +20,23 @@ jobs:
- name: Initialize CodeQL
uses: github/codeql-action/init@v2

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

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

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

0 comments on commit 6a388a6

Please sign in to comment.