Split plugins page in "user-definded devices" and "reference->plugins" #667
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: build | |
| permissions: {} | |
| on: | |
| workflow_dispatch: | |
| pull_request: | |
| jobs: | |
| build: | |
| name: Build | |
| runs-on: depot-ubuntu-24.04-arm-8 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Prepare | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: 24 | |
| cache: "npm" | |
| - name: Install | |
| run: npm ci | |
| - name: Check formatting | |
| run: npm run format:check | |
| - name: Type check | |
| run: npm run check | |
| - name: Build | |
| run: npm run build |