pack: upgrade package dependencies #305
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: app-test | |
on: | |
push: | |
branches: [master] | |
paths: | |
- '**' | |
- '!README.md' | |
- '!LICENSE' | |
- '!CODE_OF_CONDUCT.md' | |
- '!docs/**' | |
- '!.github/**' | |
- '.github/workflows/app-test.yml' | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
app-test: | |
runs-on: ${{ matrix.os }} | |
name: Test Node.js ${{ matrix.node_version }} on ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node_version: ['18', '20', '22.1'] | |
os: [windows-latest, macos-latest, ubuntu-latest] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
fetch-depth: 0 | |
- name: Install xvfb | |
if: runner.os == 'Linux' | |
run: | | |
sudo apt install -y -q --no-install-recommends xvfb | |
- name: Setup Node.js ${{ matrix.node_version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node_version }} | |
cache: npm | |
cache-dependency-path: '**/package-lock.json' | |
- name: Cache dependencies | |
uses: actions/cache@v4 | |
id: npm-cache | |
with: | |
path: | | |
**/node_modules | |
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }} | |
restore-keys: | | |
${{ runner.os }}-npm- | |
- name: Install dependencies | |
if: steps.npm-cache.outputs.cache-hit != 'true' | |
run: npm i | |
- name: Test module script (Windows or macOS) | |
if: runner.os != 'Linux' | |
run: | | |
npm run test | |
- name: Test module script (Linux) | |
if: runner.os == 'Linux' | |
run: | | |
npm run test:linux |