chore: Port plugins changes from compas #73
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: Test and Build | |
| on: pull_request | |
| jobs: | |
| test-and-build: | |
| runs-on: ubuntu-22.04 | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd #v6.0.2 | |
| with: | |
| submodules: "true" | |
| - name: Use Node.js 18.x | |
| uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f #v6.3.0 | |
| with: | |
| node-version: "18.x" | |
| - name: Install and Test OpenSCD | |
| run: | | |
| npm i @nx/nx-linux-x64-gnu | |
| npm clean-install | |
| npx playwright install chromium --with-deps | |
| npm run-script test |