Skip to content

chore(deps-dev): bump webpack from 5.91.0 to 5.92.1 #405

chore(deps-dev): bump webpack from 5.91.0 to 5.92.1

chore(deps-dev): bump webpack from 5.91.0 to 5.92.1 #405

name: Transpile and Build Check
on: [pull_request]
jobs:
builds:
if: "!contains(github.event.pull_request.title, 'WIP!')"
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Cache node_modules
uses: actions/cache@v3
env:
cache-name: cache-node-modules
with:
path: ~/.cache/yarn
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: "18.x"
- name: Install Dependencies
run: yarn install --immutable
- name: Run Build Command
run: yarn build