98 lines
2.5 KiB
YAML
98 lines
2.5 KiB
YAML
name: Test
|
|
|
|
on:
|
|
push:
|
|
branches: [master, develop]
|
|
pull_request:
|
|
|
|
jobs:
|
|
build_and_test:
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
node: ['10', '12', '14']
|
|
os: [ubuntu-latest, macos-latest, windows-latest]
|
|
|
|
name: stable - ${{ matrix.os }} - node@${{ matrix.node }}
|
|
runs-on: ${{ matrix.os }}
|
|
|
|
steps:
|
|
- uses: actions/checkout@v2
|
|
|
|
- name: Setup node
|
|
uses: actions/setup-node@v1
|
|
with:
|
|
node-version: ${{ matrix.node }}
|
|
|
|
- name: Install llvm
|
|
if: matrix.os == 'windows-latest'
|
|
run: choco install -y llvm
|
|
|
|
- name: Set llvm path
|
|
if: matrix.os == 'windows-latest'
|
|
uses: allenevans/set-env@v1.1.0
|
|
with:
|
|
LIBCLANG_PATH: 'C:\Program Files\LLVM\bin'
|
|
|
|
- name: Install
|
|
uses: actions-rs/toolchain@v1
|
|
with:
|
|
toolchain: stable
|
|
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
|
|
key: stable-${{ matrix.os }}-node@${{ matrix.node }}-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Cache cargo index
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: ~/.cargo/git
|
|
key: stable-${{ matrix.os }}gnu-node@${{ matrix.node }}-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
|
|
|
|
- name: Cache NPM dependencies
|
|
uses: actions/cache@v1
|
|
with:
|
|
path: node_modules
|
|
key: npm-cache-${{ matrix.os }}-node@${{ matrix.node }}-${{ hashFiles('yarn.lock') }}
|
|
restore-keys: |
|
|
npm-cache-
|
|
|
|
- name: 'Install dependencies'
|
|
run: yarn install --frozen-lockfile --registry https://registry.npmjs.org
|
|
|
|
- name: 'Build TypeScript'
|
|
run: yarn 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: |
|
|
yarn build:test
|
|
yarn test
|
|
env:
|
|
RUST_BACKTRACE: 1
|
|
|
|
- name: Clear the cargo caches
|
|
run: |
|
|
cargo install cargo-cache --no-default-features --features ci-autoclean
|
|
cargo-cache
|