Skip to content

Commit 1a8f562

Browse files
authored
running tests on github actions
1 parent 8a74268 commit 1a8f562

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

Diff for: .github/workflows/test.yml

+24
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Test
2+
3+
on:
4+
pull_request:
5+
branches:
6+
- master
7+
- v4
8+
- chore/github-actions
9+
10+
jobs:
11+
main:
12+
name: Test
13+
runs-on: ubuntu-latest
14+
steps:
15+
- uses: actions/checkout@v2
16+
with:
17+
fetch-depth: 1
18+
19+
- uses: actions/setup-node@v2
20+
with:
21+
node-version: 18
22+
cache: 'npm'
23+
cache-dependency-path: '**/package-lock.json'
24+
- run: make deps-project tests-ci

0 commit comments

Comments
 (0)