Skip to content

chore(deps): bump @babel/traverse from 7.22.17 to 7.23.2 (#6671) #2141

chore(deps): bump @babel/traverse from 7.22.17 to 7.23.2 (#6671)

chore(deps): bump @babel/traverse from 7.22.17 to 7.23.2 (#6671) #2141

Workflow file for this run

# Runs tests for all packages after pushes to main to check code coverage on a project level
name: Coverage
on:
push:
branches:
- main
permissions:
contents: read
jobs:
tests:
name: Unit tests
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '16'
cache: 'yarn'
- name: Install Dependencies
run: yarn --frozen-lockfile --no-progress --non-interactive
- name: Test
run: yarn test --all --coverage