Skip to content

Merge branch 'main' into hajimism/main #66

Merge branch 'main' into hajimism/main

Merge branch 'main' into hajimism/main #66

Workflow file for this run

name: Unit - Test
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Get yarn cache
id: yarn-cache
run: echo "::set-output name=dir::$(yarn cache dir)"
- uses: actions/cache@v1
with:
path: ${{ steps.yarn-cache.outputs.dir }}
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-yarn-
- uses: actions/setup-node@v2
with:
node-version: 18.x
- name: yarn install
run: yarn
env:
CI: true
- name: Run test
run: yarn test