alif-digest 1.1.7 → 1.1.9
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -0,0 +1,42 @@
|
|
|
1
|
+
version: 2
|
|
2
|
+
updates:
|
|
3
|
+
- package-ecosystem: 'npm'
|
|
4
|
+
directory: '/'
|
|
5
|
+
schedule:
|
|
6
|
+
interval: 'weekly'
|
|
7
|
+
day: 'saturday'
|
|
8
|
+
time: '09:00'
|
|
9
|
+
timezone: 'UTC'
|
|
10
|
+
open-pull-requests-limit: 1
|
|
11
|
+
groups:
|
|
12
|
+
all-dependencies:
|
|
13
|
+
patterns:
|
|
14
|
+
- '*'
|
|
15
|
+
target-branch: 'main'
|
|
16
|
+
versioning-strategy: 'auto'
|
|
17
|
+
commit-message:
|
|
18
|
+
prefix: 'chore'
|
|
19
|
+
include: 'scope'
|
|
20
|
+
ignore:
|
|
21
|
+
- dependency-name: '*'
|
|
22
|
+
update-types: ['version-update:semver-major']
|
|
23
|
+
reviewers:
|
|
24
|
+
- 'qaribhaider'
|
|
25
|
+
pull-request-branch-name:
|
|
26
|
+
separator: '-'
|
|
27
|
+
rebase-strategy: 'auto'
|
|
28
|
+
|
|
29
|
+
- package-ecosystem: 'github-actions'
|
|
30
|
+
directory: '/'
|
|
31
|
+
schedule:
|
|
32
|
+
interval: 'weekly'
|
|
33
|
+
day: 'saturday'
|
|
34
|
+
time: '09:00'
|
|
35
|
+
timezone: 'UTC'
|
|
36
|
+
open-pull-requests-limit: 1
|
|
37
|
+
target-branch: 'main'
|
|
38
|
+
commit-message:
|
|
39
|
+
prefix: 'chore'
|
|
40
|
+
include: 'scope'
|
|
41
|
+
reviewers:
|
|
42
|
+
- 'qaribhaider'
|
|
@@ -0,0 +1,38 @@
|
|
|
1
|
+
name: PR Validation
|
|
2
|
+
|
|
3
|
+
on:
|
|
4
|
+
pull_request:
|
|
5
|
+
branches: [main]
|
|
6
|
+
|
|
7
|
+
permissions:
|
|
8
|
+
contents: read
|
|
9
|
+
pull-requests: read
|
|
10
|
+
|
|
11
|
+
jobs:
|
|
12
|
+
validate:
|
|
13
|
+
runs-on: ubuntu-latest
|
|
14
|
+
|
|
15
|
+
steps:
|
|
16
|
+
- name: Checkout Code
|
|
17
|
+
uses: actions/checkout@v6
|
|
18
|
+
|
|
19
|
+
- name: Setup Node.js
|
|
20
|
+
uses: actions/setup-node@v4
|
|
21
|
+
with:
|
|
22
|
+
node-version: '22'
|
|
23
|
+
cache: 'npm'
|
|
24
|
+
|
|
25
|
+
- name: Install dependencies
|
|
26
|
+
run: npm ci
|
|
27
|
+
|
|
28
|
+
- name: Security Audit
|
|
29
|
+
run: npm audit --audit-level=high
|
|
30
|
+
|
|
31
|
+
- name: Run linter
|
|
32
|
+
run: npm run lint
|
|
33
|
+
|
|
34
|
+
- name: Build project
|
|
35
|
+
run: npm run build
|
|
36
|
+
|
|
37
|
+
- name: Run tests
|
|
38
|
+
run: npm test
|