Put updated "Professional Development 2025" section back into csp page #3970
Workflow file for this run
This file contains hidden or 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: | |
| name: buildpr | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@main | |
| - name: Set Node.js version | |
| uses: actions/setup-node@main | |
| with: | |
| node-version: '16.x' | |
| - name: npm install | |
| run: | | |
| sudo apt-get install xvfb | |
| sudo npm install -g pxt | |
| npm install | |
| - name: npm test | |
| run: | | |
| npm test | |
| env: | |
| PXT_ENV: production | |
| CHROME_BIN: chromium-browser | |
| DISPLAY: :99.0 | |
| CI: true |