Skip to content

chore(deps): bump @babel/traverse from 7.15.4 to 7.23.7 #44

chore(deps): bump @babel/traverse from 7.15.4 to 7.23.7

chore(deps): bump @babel/traverse from 7.15.4 to 7.23.7 #44

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: CI
on:
push:
branches: [main]
pull_request:
branches: [main]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- uses: actions/setup-node@v1
with:
node-version: 12
registry-url: https://registry.npmjs.org/
- 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-
- name: Install
run: yarn
- name: Run lint
run: yarn lint
- name: Run test
run: yarn test --coverage