We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d7d2fd5 commit 6a76542Copy full SHA for 6a76542
.github/workflows/ci.yml
@@ -0,0 +1,28 @@
1
+on:
2
+ pull_request:
3
+ branches:
4
+ - master
5
+ push:
6
7
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
28
+ npm run test
0 commit comments