Skip to content

Resolve the runtime module rather than assuming the executable #6

Resolve the runtime module rather than assuming the executable

Resolve the runtime module rather than assuming the executable #6

Workflow file for this run

name: Integrate
on:
push:
branches:
- main
pull_request:
branches:
- main
permissions:
contents: read
jobs:
lint:
runs-on: ubuntu-latest
name: Lint
steps:
- uses: holepunchto/actions/node-base@v1
- run: npm run lint
test:
strategy:
matrix:
include:
- os: ubuntu-24.04
platform: linux
arch: x64
- os: ubuntu-24.04-arm
platform: linux
arch: arm64
- os: macos-14
platform: darwin
arch: arm64
- os: windows-2022
platform: win32
arch: x64
runs-on: ${{ matrix.os }}
name: Test / ${{ matrix.platform }}-${{ matrix.arch }}
steps:
- uses: holepunchto/actions/bare-base@v1
- run: npm test