Skip to content

chore(deps): bump @chakra-ui/react from 2.8.1 to 2.8.2 (#323) #662

chore(deps): bump @chakra-ui/react from 2.8.1 to 2.8.2 (#323)

chore(deps): bump @chakra-ui/react from 2.8.1 to 2.8.2 (#323) #662

Workflow file for this run

name: Unit Tests
on: push
jobs:
test:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Cache Node Modules
uses: actions/cache@v2
env:
cache-name: cache-node-modules
with:
path: "**/node_modules"
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install Node Modules
run: |
yarn --immutable
env:
CI: true
- name: Run test
run: |
yarn test
env:
CI: true