Skip to content

Commit 73a0f66

Browse files
authored
Merge pull request #14 from Bobagi/feat/git-ci
feat: git workflow
2 parents e2ec6f8 + b278007 commit 73a0f66

File tree

1 file changed

+18
-0
lines changed

1 file changed

+18
-0
lines changed

.github/workflows/tests.yaml

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,18 @@
1+
name: Automated Tests
2+
3+
on: pull_request
4+
5+
jobs:
6+
jest:
7+
name: Jest Ubuntu
8+
runs-on: ubuntu-latest
9+
steps:
10+
- uses: actions/checkout@v4
11+
12+
- uses: actions/setup-node@v4
13+
with:
14+
node-version: 'lts/hydrogen'
15+
16+
- run: npm ci
17+
18+
- run: npm test

0 commit comments

Comments
 (0)