Skip to content

Commit 793d41a

Browse files
committed
Add GH workflow for solution tests
1 parent 4f8e080 commit 793d41a

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/tests.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Tests
2+
on:
3+
pull_request:
4+
paths:
5+
- '**/solution/*.js'
6+
7+
jobs:
8+
tests:
9+
name: Run tests
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v4
13+
- uses: actions/setup-node@v4
14+
- run: npm install
15+
- run: npm run test -- **/solution

0 commit comments

Comments
 (0)