Migrating to Github actions (#68)

* enable github actions

* add pr workflows

* updated name

* updatd
This commit is contained in:
Peli de Halleux
2020-01-14 13:51:33 -08:00
committed by GitHub
parent 37a531880b
commit dcea457cb5
4 changed files with 70 additions and 2 deletions

31
.github/workflows/pxt-buildpr.yml vendored Normal file
View File

@ -0,0 +1,31 @@
name: pxt-buildpr
on: [pull_request]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [8.x]
steps:
- uses: actions/checkout@v1
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v1
with:
node-version: ${{ matrix.node-version }}
- name: npm install
run: |
sudo apt-get install xvfb
sudo npm install -g pxt
npm install
- name: pxt ci
run: |
pxt ci
env:
CHROME_BIN: chromium-browser
DISPLAY: :99.0
CI: true