Skip to content

Merge pull request #72 from 46ki75/dependabot/npm_and_yarn/develop/es… #407

Merge pull request #72 from 46ki75/dependabot/npm_and_yarn/develop/es…

Merge pull request #72 from 46ki75/dependabot/npm_and_yarn/develop/es… #407

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