Skip to content

build(deps): bump nanoid from 3.3.6 to 3.3.8 #290

build(deps): bump nanoid from 3.3.6 to 3.3.8

build(deps): bump nanoid from 3.3.6 to 3.3.8 #290

Workflow file for this run

name: jest test
on:
push:
defaults:
run:
shell: bash
working-directory: ./
jobs:
test:
runs-on: ubuntu-20.04
timeout-minutes: 30
steps:
# checkout
- name: Checkout source code
uses: actions/checkout@v2
# cacheの設定
- uses: actions/setup-node@v3
with:
node-version: 20
cache: yarn
cache-dependency-path: ./yarn.lock
# packageのインストール
- name: install dependencies
run: |
yarn install
# test
- name: test
run: |
echo "Start testing..."
yarn test:badges