a781a4f27e
BREAKING CHANGE: requires node >= 16 and some cli options have been renamed
41 lines
909 B
YAML
41 lines
909 B
YAML
name: Linux musl
|
|
|
|
env:
|
|
DEBUG: 'napi:*'
|
|
|
|
concurrency:
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
cancel-in-progress: true
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
build:
|
|
name: stable - x86_64-unknown-linux-musl - node@18
|
|
runs-on: ubuntu-latest
|
|
|
|
steps:
|
|
- uses: actions/checkout@v3
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 18
|
|
cache: 'yarn'
|
|
|
|
- name: 'Install dependencies'
|
|
run: yarn install --immutable --mode=skip-build
|
|
|
|
- name: Setup and run tests
|
|
uses: addnab/docker-run-action@v3
|
|
with:
|
|
image: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
|
|
options: -v ${{ github.workspace }}:/napi-rs -w /napi-rs
|
|
run: |
|
|
cargo check -vvv
|
|
yarn build:test -- --target x86_64-unknown-linux-musl
|
|
yarn test
|