Skip to content

Commit

Permalink
Add CI workflow to build the MakeCode project.
Browse files Browse the repository at this point in the history
  • Loading branch information
microbit-carlos committed Oct 25, 2024
1 parent d41f777 commit 3bd2c0c
Showing 1 changed file with 27 additions and 0 deletions.
27 changes: 27 additions & 0 deletions .github/workflows/build-project.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,27 @@
name: Build MakeCode Project

on:
push:
branches: '*'
pull_request:
branches: '*'

jobs:
build-project:
name: Build MakeCode Project
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
- name: Install dependencies
run: |
npm install -g pxt
pxt target microbit --no-save
pxt install
- name: Build locally with Docker
run: pxt build --localbuild
env:
CI: true

0 comments on commit 3bd2c0c

Please sign in to comment.