Skip to content

Merge pull request #83 from walkframe/fix/issue-82 #277

Merge pull request #83 from walkframe/fix/issue-82

Merge pull request #83 from walkframe/fix/issue-82 #277

Workflow file for this run

name: unittest
on:
push:
workflow_dispatch:
env:
TZ: 'Asia/Tokyo'
jobs:
run-unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: setup
uses: actions/setup-node@v4
with:
node-version: "22"
- name: cache
uses: actions/cache@v3
with:
path: |
node_modules
key: ${{ runner.os }}-${{ hashFiles('**/yarn.lock') }}
- name: install
run: |
yarn install
- name: test
run: |
yarn jest