Skip to content

package: upgrade GitHub workflow actions versions and package depende… #111

package: upgrade GitHub workflow actions versions and package depende…

package: upgrade GitHub workflow actions versions and package depende… #111

Workflow file for this run

name: test-nodejs
on:
# trigger deployment on every push to main branch
push:
branches: [master]
paths:
- '**'
- '!LICENSE'
- '!CODE_OF_CONDUCT.md'
- '!CHANGELOG.md'
- '!README.md'
- '!.github/**'
# 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']
os: [ubuntu-latest, windows-latest, macos-latest]
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@v3
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@v3
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