napi-rs/.github/workflows/linux-musl.yaml

42 lines
877 B
YAML
Raw Normal View History

2020-10-14 17:15:20 +09:00
name: Linux musl
env:
DEBUG: 'napi:*'
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:
jobs:
build:
2021-03-19 12:53:48 +09:00
name: stable - x86_64-unknown-linux-musl - node@lts
runs-on: ubuntu-latest
steps:
2022-04-01 15:29:51 +09:00
- uses: actions/checkout@v3
2021-11-19 15:58:21 +09:00
- name: Setup node
uses: actions/setup-node@v3
2020-11-26 15:30:19 +09:00
with:
2021-11-19 15:58:21 +09:00
node-version: 16
check-latest: true
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
- name: 'Build TypeScript'
2021-11-19 15:58:21 +09:00
run: yarn build
2021-11-19 15:58:21 +09:00
- name: Setup and run tests
uses: addnab/docker-run-action@v3
with:
image: ghcr.io/${{ github.repository }}/nodejs-rust:lts-alpine
options: -v ${{ github.workspace }}:/napi-rs -w /napi-rs
run: |
cargo check -vvv
yarn build:test
yarn test