Skip to content

Commit 1c4381c

Browse files
authored
Migrate CircleCI workflows for solution tests to GitHub actions (#577)
1 parent 4f8e080 commit 1c4381c

File tree

2 files changed

+15
-20
lines changed

2 files changed

+15
-20
lines changed

.circleci/config.yml

Lines changed: 0 additions & 20 deletions
This file was deleted.

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