Skip to content

Commit f7ee503

Browse files
authored
Merge pull request #6 from JabRef/test_isolation
2 parents bd3e38a + c57e47a commit f7ee503

5 files changed

Lines changed: 664 additions & 30 deletions

File tree

.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)