Initial files for MakeCode project

This commit is contained in:
Alexander Davis
2021-06-19 17:23:04 +01:00
parent 0b816eead3
commit 5e42d4ad77
13 changed files with 319 additions and 0 deletions

29
.github/workflows/makecode.yml vendored Normal file
View File

@@ -0,0 +1,29 @@
name: MakeCode
on: [push]
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: |
npm install -g pxt
pxt target microbit
- name: build
run: |
pxt install
pxt build --cloud
env:
CI: true