Changed mechanism, component, and event blocks to use functions mrcOnMove for handling events from blockly #522
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: Tests | |
on: | |
push: | |
pull_request: | |
jobs: | |
main: | |
runs-on: ubuntu-latest | |
steps: | |
- run: git config --global core.autocrlf false | |
- uses: actions/checkout@v4 | |
- uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
- name: Install Dependencies | |
run: npm ci | |
- name: Check TypeScript Errors | |
run: npm run tscheck | |
- name: Install Playwright Browsers | |
run: npx playwright install --with-deps | |
- name: Build Project | |
run: npm run build | |
- name: Run tests | |
run: npm test |