Skip to content

Commit a9ab409

Browse files
authored
Merge pull request #71 from reactome/auto-testing
feat: Added automatic testing pipeline
2 parents bc56d68 + 62c77ad commit a9ab409

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.github/workflows/prettier.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
name: autofix.ci
1+
name: Auto-format with Prettier
22
on:
33
pull_request:
44

.github/workflows/tests.yml

Lines changed: 25 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,25 @@
1+
name: Angular Tests
2+
3+
on:
4+
pull_request:
5+
6+
permissions:
7+
contents: read
8+
9+
jobs:
10+
test:
11+
runs-on: ubuntu-latest
12+
13+
steps:
14+
- uses: actions/checkout@v4
15+
16+
- uses: actions/setup-node@v4
17+
with:
18+
node-version: 20
19+
cache: npm
20+
21+
- name: Install dependencies
22+
run: npm ci --legacy-peer-deps
23+
24+
- name: Test
25+
run: npm test

0 commit comments

Comments
 (0)