Skip to content

Bump @babel/traverse from 7.20.12 to 7.23.2 (1691) by @laurakwhit (Attempt 1) #1908

Bump @babel/traverse from 7.20.12 to 7.23.2 (1691) by @laurakwhit (Attempt 1)

Bump @babel/traverse from 7.20.12 to 7.23.2 (1691) by @laurakwhit (Attempt 1) #1908

Workflow file for this run

name: Run Tests, Lint, and Check Types
run-name: ${{github.event.pull_request.title}} (${{ github.event.pull_request.number }}) by @${{ github.triggering_actor }} (Attempt ${{ github.run_attempt }})
on:
push:
branches: [main]
pull_request:
branches: [main, 'codefreeze-*']
paths-ignore:
- '**.md'
- 'LICENSE'
- 'CODEOWNERS'
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
defaults:
run:
shell: bash
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout and Setup Node
uses: ./.github/actions/checkout-and-setup
- name: Lint
run: pnpm run --if-present lint:ci
check-types:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout and Setup Node
uses: ./.github/actions/checkout-and-setup
- name: Check Types
run: pnpm run check
unit-tests:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Checkout and Setup Node
uses: ./.github/actions/checkout-and-setup
- name: Run Unit Tests
run: pnpm test