forked from Ndifreke000/stellar-insights
-
Notifications
You must be signed in to change notification settings - Fork 0
44 lines (36 loc) · 973 Bytes
/
codeql-analysis.yml
File metadata and controls
44 lines (36 loc) · 973 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
name: "CodeQL"
on:
push:
branches: [ main ]
pull_request:
# The branches below must be a subset of the branches above
branches: [ main ]
schedule:
- cron: '0 2 * * *' # nightly at 02:00 UTC
jobs:
analyze:
name: Analyze (CodeQL)
runs-on: ubuntu-latest
permissions:
actions: read
contents: read
security-events: write
steps:
- name: Checkout repository
uses: actions/checkout@v4
- name: Initialize CodeQL
uses: github/codeql-action/init@v4
with:
languages: javascript,rust
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install frontend dependencies
working-directory: frontend
run: npm ci --legacy-peer-deps
- name: Build Rust backend
working-directory: backend
run: cargo build --workspace --all-features
- name: Run CodeQL analysis
uses: github/codeql-action/analyze@v4