Skip to content

build(deps): bump @babel/traverse from 7.20.13 to 7.23.2 (#2837) #247

build(deps): bump @babel/traverse from 7.20.13 to 7.23.2 (#2837)

build(deps): bump @babel/traverse from 7.20.13 to 7.23.2 (#2837) #247

Workflow file for this run

name: Test
on:
push:
branches:
- main
pull_request:
defaults:
run:
shell: bash
jobs:
unit-test:
runs-on: ubuntu-20.04
name: unit tests
steps:
- uses: actions/checkout@v3
- uses: actions/cache@v3
id: cache
with:
path: node_modules
key: ${{ runner.os }}-${{ hashFiles('package.json', 'yarn.lock') }}
- name: Install Dependencies
if: steps.cache.outputs.cache-hit != 'true'
run: yarn install --frozen-lockfile
- name: Test
run: yarn jest