Skip to content

splitting front and backend #1253

splitting front and backend

splitting front and backend #1253

name: "Code scanning - action"
on:
push:
schedule:
- cron: '0 4 * * 0'
jobs:
CodeQL-Build:
strategy:
fail-fast: false
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v3
# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
# Install dependencies for backend (Node.js)
- name: Install Node.js backend dependencies
run: |
yarn install
working-directory: app
# Build frontend (React)
- name: Build React frontend
run: yarn build
working-directory: app/jenkins-for-jira-ui
- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2