Skip to content

Merge pull request #77 from 46ki75/dependabot/npm_and_yarn/develop/ty… #415

Merge pull request #77 from 46ki75/dependabot/npm_and_yarn/develop/ty…

Merge pull request #77 from 46ki75/dependabot/npm_and_yarn/develop/ty… #415

Workflow file for this run

name: Unit Test
on:
push:
workflow_dispatch:
jobs:
test:
runs-on: ubuntu-latest
strategy:
matrix:
node-version:
- 20.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'
- name: Install dependencies
run: npm i
- name: Run Unit Test
run: npm run test