Skip to content

Commit 4701dc7

Browse files
committed
test
1 parent 09502bb commit 4701dc7

5 files changed

Lines changed: 180 additions & 71 deletions

File tree

.github/workflows/codeql.yml

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,35 @@
1+
name: CodeQL
2+
3+
on:
4+
push:
5+
branches:
6+
- fix/package
7+
pull_request:
8+
branches:
9+
- fix/package
10+
11+
jobs:
12+
analyze:
13+
name: Analyze
14+
runs-on: ubuntu-latest
15+
16+
permissions:
17+
security-events: write
18+
contents: read
19+
20+
strategy:
21+
fail-fast: false
22+
matrix:
23+
language: [javascript]
24+
25+
steps:
26+
- name: Checkout repository
27+
uses: actions/checkout@v4
28+
29+
- name: Initialize CodeQL
30+
uses: github/codeql-action/init@v3
31+
with:
32+
languages: javascript
33+
34+
- name: Perform CodeQL Analysis
35+
uses: github/codeql-action/analyze@v3

.github/workflows/deploy.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ on:
44
push:
55
branches:
66
- main
7-
workflow_dispatch: # این خط برای اجرای دستی اضافه شده است
7+
workflow_dispatch:
88

99
jobs:
1010
build:

0 commit comments

Comments
 (0)