Skip to content

Commit 5d6818a

Browse files
committed
CI tests
1 parent f1351d6 commit 5d6818a

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+
job:
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)