Change the name of Kitronik arcade shield board #2302
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pxt-buildpr | |
on: [pull_request] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: [16.x] | |
steps: | |
- uses: actions/checkout@main | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@main | |
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 |