Skip to content

Commit 6a76542

Browse files
authored
Create ci.yml
1 parent d7d2fd5 commit 6a76542

File tree

1 file changed

+28
-0
lines changed

1 file changed

+28
-0
lines changed

.github/workflows/ci.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
on:
2+
pull_request:
3+
branches:
4+
- master
5+
push:
6+
branches:
7+
- master
8+
9+
jobs:
10+
build_test_job:
11+
name: 'Build and test job'
12+
runs-on: ${{ matrix.os }}
13+
strategy:
14+
matrix:
15+
os: [windows-latest, ubuntu-latest, macos-latest]
16+
steps:
17+
18+
- name: 'Checking out repo code'
19+
uses: actions/checkout@v2
20+
21+
- name: 'Validate build'
22+
run: |
23+
npm install
24+
npm run build
25+
26+
- name: 'Run L0 tests'
27+
run: |
28+
npm run test

0 commit comments

Comments
 (0)