2020-10-14 17:15:20 +09:00
|
|
|
name: Linux musl
|
2020-06-10 19:55:40 +09:00
|
|
|
|
2020-10-15 17:14:11 +09:00
|
|
|
env:
|
|
|
|
DEBUG: 'napi:*'
|
|
|
|
|
2023-03-12 19:31:13 +09:00
|
|
|
concurrency:
|
|
|
|
group: ${{ github.workflow }}-${{ github.ref }}
|
|
|
|
cancel-in-progress: true
|
|
|
|
|
2020-08-17 23:36:09 +09:00
|
|
|
on:
|
|
|
|
push:
|
2020-12-03 17:30:14 +09:00
|
|
|
branches:
|
|
|
|
- main
|
2020-08-17 23:36:09 +09:00
|
|
|
pull_request:
|
2020-06-10 19:55:40 +09:00
|
|
|
|
|
|
|
jobs:
|
|
|
|
build:
|
2022-12-09 18:29:03 +09:00
|
|
|
name: stable - x86_64-unknown-linux-musl - node@18
|
2020-06-10 19:55:40 +09:00
|
|
|
runs-on: ubuntu-latest
|
|
|
|
|
|
|
|
steps:
|
2022-04-01 15:29:51 +09:00
|
|
|
- uses: actions/checkout@v3
|
2020-06-10 19:55:40 +09:00
|
|
|
|
2021-11-19 15:58:21 +09:00
|
|
|
- name: Setup node
|
2022-03-05 15:14:32 +09:00
|
|
|
uses: actions/setup-node@v3
|
2020-11-26 15:30:19 +09:00
|
|
|
with:
|
2022-12-09 18:29:03 +09:00
|
|
|
node-version: 18
|
2021-11-19 15:58:21 +09:00
|
|
|
cache: 'yarn'
|
2020-11-26 15:30:19 +09:00
|
|
|
|
2021-11-19 15:58:21 +09:00
|
|
|
- name: 'Install dependencies'
|
2022-04-01 15:29:51 +09:00
|
|
|
run: yarn install --immutable --mode=skip-build
|
2020-07-29 23:04:47 +09:00
|
|
|
|
2021-11-19 15:58:21 +09:00
|
|
|
- name: Setup and run tests
|
|
|
|
uses: addnab/docker-run-action@v3
|
|
|
|
with:
|
2022-09-09 19:54:23 +09:00
|
|
|
image: ghcr.io/napi-rs/napi-rs/nodejs-rust:lts-alpine
|
2021-11-19 15:58:21 +09:00
|
|
|
options: -v ${{ github.workspace }}:/napi-rs -w /napi-rs
|
|
|
|
run: |
|
|
|
|
cargo check -vvv
|
2023-04-06 12:04:53 +09:00
|
|
|
yarn build:test -- --target x86_64-unknown-linux-musl
|
2021-11-19 15:58:21 +09:00
|
|
|
yarn test
|