Skip to content

chore(deps-dev): bump @types/node from 22.8.1 to 22.10.7 in /nodejs #34

chore(deps-dev): bump @types/node from 22.8.1 to 22.10.7 in /nodejs

chore(deps-dev): bump @types/node from 22.8.1 to 22.10.7 in /nodejs #34

Workflow file for this run

name: Unit Test
on:
push:
pull_request:
branches:
- main
- develop
- "release/**"
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
defaults:
run:
working-directory: nodejs
strategy:
matrix:
node-version:
- 22.x
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: "npm"
cache-dependency-path: nodejs/package-lock.json
- name: Install dependencies
run: npm i
- name: Run Unit Test
run: npm run test