Skip to content

Bump the dev-dependencies group across 1 directory with 5 updates #949

Bump the dev-dependencies group across 1 directory with 5 updates

Bump the dev-dependencies group across 1 directory with 5 updates #949

Workflow file for this run

name: Test
on:
pull_request:
push:
branches:
- main
- "releases/*"
jobs:
checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version: 16
cache: npm
- run: npm ci
- run: npm run lint
- run: npm run build
- run: git diff -aw --exit-code dist/index.js
test-single:
strategy:
matrix:
os: [ubuntu-latest, windows-latest, macos-latest]
ndk-version: [r21e, r26d]
local-cache: [true, false]
exclude:
- os: macos-latest
ndk-version: r21e
fail-fast: false
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- uses: ./
id: install-ndk
with:
ndk-version: ${{ matrix.ndk-version }}
local-cache: ${{ matrix.local-cache }}
link-to-sdk: true
- run: ndk-build --version
- run: ${{ steps.install-ndk.outputs.ndk-path }}/ndk-build --version
- run: $ANDROID_HOME/ndk/${{ steps.install-ndk.outputs.ndk-full-version }}/ndk-build --version
if: matrix.os != 'windows-latest'
- run: "& $Env:ANDROID_HOME/ndk/${{ steps.install-ndk.outputs.ndk-full-version }}/ndk-build --version"
if: matrix.os == 'windows-latest'
test-multiple:
runs-on: ubuntu-latest
strategy:
matrix:
local-cache: [true, false]
steps:
- uses: actions/checkout@v4
- uses: ./
id: install-ndk-21
with:
ndk-version: r21e
add-to-path: false
local-cache: ${{ matrix.local-cache }}
- uses: ./
id: install-ndk-25
with:
ndk-version: r26d
add-to-path: false
local-cache: ${{ matrix.local-cache }}
- run: "! which ndk-build"
- run: ${{ steps.install-ndk-21.outputs.ndk-path }}/ndk-build --version
- run: ${{ steps.install-ndk-25.outputs.ndk-path }}/ndk-build --version