Skip to content
This repository was archived by the owner on Oct 18, 2023. It is now read-only.

Commit cb1e0a2

Browse files
committed
Added CI workflow
1 parent 89652af commit cb1e0a2

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yaml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Run CI
2+
on:
3+
push:
4+
branches-ignore:
5+
- develop
6+
- release/**
7+
pull_request:
8+
9+
jobs:
10+
test:
11+
needs:
12+
- sonar
13+
strategy:
14+
matrix:
15+
os: [ ubuntu-latest, windows-latest, macos-latest ]
16+
node: [ 12, 14, 15 ]
17+
task: [ test ]
18+
19+
runs-on: ${{matrix.os}}
20+
steps:
21+
- name: Set up Git repository
22+
uses: actions/checkout@v2
23+
- name: Set up node
24+
uses: actions/setup-node@v2
25+
with:
26+
node-version: ${{matrix.node}}
27+
- name: Run tests
28+
run: ./ci/test/script/run-test.sh;

0 commit comments

Comments
 (0)