Skip to content

Bump @babel/traverse from 7.22.10 to 7.23.2 #16

Bump @babel/traverse from 7.22.10 to 7.23.2

Bump @babel/traverse from 7.22.10 to 7.23.2 #16

Workflow file for this run

name: Build
on:
push:
branches: ["main", "development"]
pull_request:
branches: ["main", "development"]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]
# See supported Node.js release schedule at https://nodejs.org/en/about/releases/
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
cache: "yarn"
- name: Install dependencies
run: yarn --frozen-lockfile
- name: Run Typecheck
run: yarn typecheck
timeout-minutes: 1
- name: Build
run: yarn build
timeout-minutes: 1