Skip to content

Commit 8316c21

Browse files
committed
Merge remote-tracking branch 'fresh/main' into rewrite
2 parents 70e945f + 622adbe commit 8316c21

6 files changed

Lines changed: 691 additions & 30 deletions

File tree

.github/dependabot.yml

Lines changed: 27 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,27 @@
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: [ ]

.github/workflows/test.yaml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
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

0 commit comments

Comments
 (0)