Skip to content

Bump @babel/core from 7.23.9 to 7.24.3 #1412

Bump @babel/core from 7.23.9 to 7.24.3

Bump @babel/core from 7.23.9 to 7.24.3 #1412

Workflow file for this run

name: Production Build
on: [push]
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- name: Checkout Git repo
uses: actions/checkout@v2
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v2
with:
node-version: ${{ matrix.node-version }}
- name: Cache node_modules
uses: actions/cache@v2
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- run: yarn install
- run: yarn build
env:
CI: true