chore: remove node10 test

This commit is contained in:
LongYinan 2022-01-04 11:14:55 +08:00
parent 04012915bb
commit 7040a2930f
No known key found for this signature in database
GPG key ID: C3666B7FC82ADAD7
4 changed files with 14 additions and 114 deletions

View file

@ -1,28 +0,0 @@
version: 2
updates:
- package-ecosystem: npm
directory: '/'
schedule:
interval: weekly
open-pull-requests-limit: 10
versioning-strategy: increase
- package-ecosystem: cargo
directory: '/build'
schedule:
interval: weekly
open-pull-requests-limit: 10
- package-ecosystem: cargo
directory: '/napi-derive'
schedule:
interval: weekly
open-pull-requests-limit: 10
- package-ecosystem: cargo
directory: '/napi'
schedule:
interval: weekly
open-pull-requests-limit: 10
- package-ecosystem: cargo
directory: '/sys'
schedule:
interval: weekly
open-pull-requests-limit: 10

View file

@ -1,85 +0,0 @@
name: Linux N-API@3
env:
DEBUG: 'napi:*'
on:
push:
branches:
- main
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
- uses: actions/setup-node@v2
with:
node-version: 16
check-latest: true
cache: 'yarn'
- 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@v2
with:
path: ~/.cargo/registry
key: stable-napi3-cargo-registry-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo index
uses: actions/cache@v2
with:
path: ~/.cargo/git
key: stable-napi3-cargo-index-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache cargo build
uses: actions/cache@v2
with:
path: target
key: stable-napi3-cargo-build-trimmed-${{ hashFiles('**/Cargo.lock') }}
- name: Cache NPM dependencies
uses: actions/cache@v2
with:
path: node_modules
key: napi3-${{ hashFiles('yarn.lock') }}
- name: 'Install dependencies'
run: yarn add ava@2 --dev --ignore-engines -W
- name: 'Build TypeScript'
run: yarn --ignore-engines build
- name: Check build
uses: actions-rs/cargo@v1
with:
command: check
args: --all --bins --examples --tests -vvv
- uses: actions/setup-node@v2
with:
node-version: '10.2.0'
- name: Unit tests
run: |
yarn --cwd ./examples/napi-compat-mode --ignore-engines build-napi3
yarn --ignore-engines test examples/napi-compat-mode/__test__/**/*.spec.ts
env:
RUST_BACKTRACE: 1
- name: Clear the cargo caches
run: |
cargo install cargo-cache --no-default-features --features ci-autoclean
cargo-cache

View file

@ -45,12 +45,12 @@ _Main branch is now under napi@next developing. Checkout [v1 docs](https://napi.
## Platform Support
![Lint](https://github.com/napi-rs/napi-rs/workflows/Lint/badge.svg)
![Linux N-API@3](https://github.com/napi-rs/napi-rs/workflows/Linux%20N-API@3/badge.svg)
![Linux musl](https://github.com/napi-rs/napi-rs/workflows/Linux%20musl/badge.svg)
![macOS/Windows/Linux x64](https://github.com/napi-rs/napi-rs/workflows/macOS/Windows/Linux%20x64/badge.svg)
![Linux-aarch64](https://github.com/napi-rs/napi-rs/workflows/Linux-aarch64/badge.svg)
![Linux-armv7](https://github.com/napi-rs/napi-rs/workflows/Linux-armv7/badge.svg)
![macOS-Android](https://github.com/napi-rs/napi-rs/workflows/macOS-Android/badge.svg)
[![Android-armv7](https://github.com/napi-rs/napi-rs/actions/workflows/android-armv7.yml/badge.svg)](https://github.com/napi-rs/napi-rs/actions/workflows/android-armv7.yml)
![Windows i686](https://github.com/napi-rs/napi-rs/workflows/Windows%20i686/badge.svg)
[![Windows arm64](https://github.com/napi-rs/napi-rs/actions/workflows/windows-arm.yml/badge.svg)](https://github.com/napi-rs/napi-rs/actions/workflows/windows-arm.yml)
[![FreeBSD](https://api.cirrus-ci.com/github/napi-rs/napi-rs.svg)](https://cirrus-ci.com/github/napi-rs/napi-rs?branch=main)

13
renovate.json Normal file
View file

@ -0,0 +1,13 @@
{
"extends": ["config:base", ":preserveSemverRanges"],
"packageRules": [
{
"automerge": true,
"matchUpdateTypes": ["minor", "patch", "pin", "digest"]
}
],
"lockFileMaintenance": {
"enabled": true,
"extends": ["schedule:monthly"]
}
}