Replace QEMU emulations with native Ubuntu ARM runners #387
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: Node.js CI | |
| on: | |
| push: | |
| branches: ['*'] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| tests: | |
| name: Node.js ${{matrix.node-version}} on ${{matrix.os}} | |
| runs-on: ${{matrix.os}} | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macOS-latest, windows-latest] | |
| node-version: [20, 22, 24, 25] | |
| steps: | |
| - uses: actions/checkout@v5 | |
| with: | |
| submodules: true | |
| - name: Setup Node.js ${{matrix.node-version}} | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: ${{matrix.node-version}} | |
| - name: Install the package and run tests | |
| env: | |
| DEVELOPMENT_SKIP_GETTING_ASSET: true | |
| run: | | |
| npm i | |
| npm run build --if-present | |
| npm test && npm run ts-test |