This repository was archived by the owner on Mar 12, 2025. It is now read-only.
package: this package has merged qsu
repository. current repository…
#17
This file contains hidden or 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: test-nodejs | |
on: | |
pull_request: | |
branches: [main] | |
# trigger deployment on every push to main branch | |
push: | |
branches: [main] | |
paths: | |
- '**' | |
- '!LICENSE' | |
- '!CODE_OF_CONDUCT.md' | |
- '!CHANGELOG.md' | |
- '!.github/**' | |
- '!.vscode/**' | |
- '.github/workflows/app-test.yml' | |
# trigger deployment manually | |
workflow_dispatch: | |
jobs: | |
test-nodejs: | |
runs-on: ${{ matrix.os }} | |
name: Test NodeJS ${{ matrix.node_version }} on ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
node_version: ['18', '20', '22'] | |
os: [ubuntu-latest, windows-latest, macos-latest, windows-2022] | |
steps: | |
- uses: actions/checkout@v4 | |
with: | |
# fetch all commits to get last updated time or other git log info | |
fetch-depth: 0 | |
- name: Setup NodeJS ${{ matrix.node_version }} | |
uses: actions/setup-node@v4 | |
with: | |
# choose node.js version to use | |
node-version: ${{ matrix.node_version }} | |
cache: npm | |
cache-dependency-path: '**/package-lock.json' | |
# cache node_modules | |
- 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- | |
# install dependencies if the cache did not hit | |
- name: Install dependencies | |
if: steps.npm-cache.outputs.cache-hit != 'true' | |
run: npm i | |
# run test | |
- name: Test module script | |
run: npm run test |