Skip to content

Bump webpack from 5.92.1 to 5.94.0 in the npm_and_yarn group across 1 directory #2157

Bump webpack from 5.92.1 to 5.94.0 in the npm_and_yarn group across 1 directory

Bump webpack from 5.92.1 to 5.94.0 in the npm_and_yarn group across 1 directory #2157

Workflow file for this run

name: Format MDX and Lint
on:
pull_request:
branches:
- main
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout App Repo
uses: actions/checkout@v3
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: '20'
cache: 'yarn'
cache-dependency-path: '**/yarn.lock'
- name: Install App Dependencies
run: yarn --prefer-offline
- name: Check MDX
run: yarn check:mdx
- name: Build app
run: yarn build