We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 249421d commit f41efb0Copy full SHA for f41efb0
1 file changed
.github/workflows/security-scan.yml
@@ -0,0 +1,28 @@
1
+name: "Security Scan"
2
+
3
+on:
4
+ push:
5
+ branches: [ "fix/package" ]
6
+ pull_request:
7
8
9
+jobs:
10
+ analyze:
11
+ name: Analyze
12
+ runs-on: ubuntu-latest
13
+ permissions:
14
+ actions: read
15
+ contents: read
16
+ security-events: write
17
18
+ steps:
19
+ - name: Checkout repository
20
+ uses: actions/checkout@v4
21
22
+ - name: Initialize CodeQL
23
+ uses: github/codeql-action/init@v3
24
+ with:
25
+ languages: 'javascript' # چون پروژه شما React است
26
27
+ - name: Perform CodeQL Analysis
28
+ uses: github/codeql-action/analyze@v3
0 commit comments