napi-rs/.github/workflows/napi3.yaml

87 lines
2.3 KiB
YAML
Raw Normal View History

name: Linux-N-API-3
2020-08-17 23:36:09 +09:00
on:
push:
branches: [master, develop]
pull_request:
jobs:
build_and_test:
name: stable - x86_64-unknown-linux-gnu - node@10.2
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup node
run: |
wget https://nodejs.org/dist/v10.2.0/node-v10.2.0-linux-x64.tar.xz
tar xf node-v10.2.0-linux-x64.tar.xz
echo "::add-path::$(pwd)/node-v10.2.0-linux-x64/bin"
- name: Install stable
uses: actions-rs/toolchain@v1
with:
toolchain: stable-x86_64-unknown-linux-gnu
profile: minimal
override: true
- name: Generate Cargo.lock
uses: actions-rs/cargo@v1
with:
command: generate-lockfile
- name: Cache cargo registry
uses: actions/cache@v1
with:
path: ~/.cargo/registry
2020-07-29 23:04:47 +09:00
key: stable-napi3-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v1
with:
path: ~/.cargo/git
2020-07-29 23:04:47 +09:00
key: stable-napi3-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v1
with:
path: target
2020-07-29 23:04:47 +09:00
key: stable-napi3-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache NPM dependencies
uses: actions/cache@v1
with:
path: node_modules
key: napi3-${{ hashFiles('yarn.lock') }}
restore-keys: |
npm-cache-
- name: 'Install dependencies'
run: yarn add ava@2 --dev --ignore-engines
- name: 'Build TypeScript'
2020-09-04 17:22:15 +09:00
run: yarn --ignore-engines build
- name: Check build
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples --tests -vvv
- name: Tests
uses: actions-rs/cargo@v1
timeout-minutes: 5
with:
command: test
args: -p napi-sys --lib -- --nocapture
- name: Unit tests
run: |
2020-09-04 17:22:15 +09:00
yarn --cwd ./test_module --ignore-engines build
yarn --ignore-engines test
env:
RUST_BACKTRACE: 1
- name: Clear the cargo caches
run: |
cargo install cargo-cache --no-default-features --features ci-autoclean
cargo-cache