Skip to content

Bump @babel/traverse from 7.21.5 to 7.23.2 #65

Bump @babel/traverse from 7.21.5 to 7.23.2

Bump @babel/traverse from 7.21.5 to 7.23.2 #65

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Test
on:
push:
branches:
- "*" # matches every branch that doesn't contain a '/'
- "*/*" # matches every branch containing a single '/'
- "**" # matches every branch
- "!main" # matches no branches
workflow_dispatch:
workflow_call:
# A workflow run is made up of one or more jobs that can run sequentially or in parallel
jobs:
cache-warmer:
# The type of runner that the job will run on
runs-on: ubuntu-latest
timeout-minutes: 4
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
- uses: actions/checkout@v3
- uses: pnpm/action-setup@v2
- name: Setup Node.js environment
uses: actions/setup-node@v3
id: setup
with:
cache: pnpm
node-version-file: .nvmrc
- name: Install deps
if: ${{ steps.setup.outputs.cache-hit != 'true' }}
run: pnpm install --frozen-lockfile
test:
uses: ./.github/workflows/test-in-parallel.yml
needs: cache-warmer
with:
parellelism_count: 2
test_command: npx jest
package_manager: pnpm
lint:
uses: ./.github/workflows/lint.yml
needs: cache-warmer
typecheck:
uses: ./.github/workflows/typecheck.yml
needs: cache-warmer