Skip to content

Bump @babel/traverse from 7.14.0 to 7.23.2 #44

Bump @babel/traverse from 7.14.0 to 7.23.2

Bump @babel/traverse from 7.14.0 to 7.23.2 #44

Workflow file for this run

name: CI Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout 🛎️
uses: actions/checkout@v2
with:
persist-credentials: false
- name: Setup Node.js 14 🐢
uses: actions/setup-node@v2
with:
node-version: '14'
- name: Package cache 💾
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Install packages 🏗
run: yarn install
- name: Check linter ✅
run: yarn lint
- name: Build Project 🔧
run: yarn build