File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ # Basic `dependabot.yml` file with
2+ # minimum configuration for three package managers
3+
4+ version : 2
5+ updates :
6+ # Enable version updates for npm
7+ - package-ecosystem : " npm"
8+ directory : " /"
9+ schedule :
10+ interval : " weekly"
11+ day : sunday
12+
13+ # Enable version updates for GitHub Actions
14+ - package-ecosystem : " github-actions"
15+ # Workflow files stored in the default location of `.github/workflows`
16+ # You don't need to specify `/.github/workflows` for `directory`. You can use `directory: "/"`.
17+ directory : " /"
18+ schedule :
19+ interval : " weekly"
20+ day : sunday
21+
22+ - package-ecosystem : " gitsubmodule"
23+ directory : " /"
24+ schedule :
25+ interval : weekly
26+ day : sunday
27+ labels : [ ]
Original file line number Diff line number Diff line change 1+ name : Test Workflow
2+
3+ on :
4+ pull_request :
5+ push :
6+
7+ jobs :
8+ test :
9+ runs-on : ubuntu-latest
10+ steps :
11+ - uses : actions/checkout@v6
12+ - name : Set up Node.js
13+ uses : actions/setup-node@v6
14+ - name : Set up Python
15+ uses : actions/setup-python@v6
16+ - name : Run import_and_patch_translators
17+ run : python3 scripts/import_and_patch_translators.py
18+ - name : Install dependencies
19+ run : npm install
20+ - name : Run tests
21+ run : npm test
You can’t perform that action at this time.
0 commit comments