Create main.yml

This commit is contained in:
mathuo 2020-10-15 21:58:18 +01:00 committed by GitHub
parent 272ecb68ab
commit f9eb31152f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

23
.github/workflows/main.yml vendored Normal file
View File

@ -0,0 +1,23 @@
name: Node.js CI
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v1
with:
node-version: '14.x'
- run: npm install -g gulp
- run: npm install -g lerna
- run: cd packages/splitview
- run: npm run build
- run: cd ../../
- run: npm test
env:
CI: true