Skip to content

build(deps): bump @babel/traverse from 7.22.11 to 7.23.2 (#67) #65

build(deps): bump @babel/traverse from 7.22.11 to 7.23.2 (#67)

build(deps): bump @babel/traverse from 7.22.11 to 7.23.2 (#67) #65

Workflow file for this run

name: Build and Test Library Code
on:
push:
pull_request:
jobs:
run-checks:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: 16.14.2
cache: 'yarn'
- name: Install dependencies
run: |
yarn install --frozen-lockfile
- name: Compile
run: yarn compile
- name: Lint
run: yarn lint
- name: Test
run: yarn test
- name: Prettier formatting check
run: yarn prettier:check