Guillaume Vincent
5 years ago
committed by
GitHub
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with
15 additions and
0 deletions
-
.github/workflows/main.yml
|
|
@@ -0,0 +1,15 @@ |
|
|
|
name: ci |
|
|
|
|
|
|
|
on: [push, pull_request] |
|
|
|
|
|
|
|
jobs: |
|
|
|
build: |
|
|
|
|
|
|
|
runs-on: ubuntu-latest |
|
|
|
|
|
|
|
steps: |
|
|
|
- uses: actions/checkout@v1 |
|
|
|
- name: test javascript packages |
|
|
|
run: | |
|
|
|
yarn install |
|
|
|
yarn test |