Switch addon to N-API with prebuildify toolchain (2.0.0-beta) #36
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 | |
| on: [push, pull_request] | |
| permissions: | |
| contents: read | |
| jobs: | |
| test: | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| node: [18, 20, 22] | |
| arch: [x86, x64] | |
| exclude: | |
| - { os: ubuntu-latest, arch: x86 } | |
| - { os: macos-latest, arch: x86 } | |
| runs-on: ${{ matrix.os }} | |
| name: ${{ matrix.os }} / Node ${{ matrix.node }} ${{ matrix.arch }} | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| with: | |
| submodules: recursive | |
| fetch-depth: 2 | |
| - name: Use node ${{ matrix.node }} ${{ matrix.arch }} | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| architecture: ${{ matrix.arch }} | |
| - name: Install | |
| run: npm install | |
| - name: Test | |
| run: npm test | |
| # https://github.com/electron/electron/issues/42510#issuecomment-2171583086 | |
| - name: Disable AppArmor restriction | |
| if: matrix.os == 'ubuntu-latest' | |
| run: sudo sysctl -w kernel.apparmor_restrict_unprivileged_userns=0 | |
| - name: Test Electron | |
| if: matrix.os == 'ubuntu-latest' && matrix.node == '18' | |
| uses: GabrielBB/xvfb-action@v1 | |
| with: | |
| run: npm run test-electron |