Skip to content

Bump webpack from 5.91.0 to 5.94.0 #47

Bump webpack from 5.91.0 to 5.94.0

Bump webpack from 5.91.0 to 5.94.0 #47

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/cache@v4
with:
path: '**/node_modules'
key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }}
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: '20.x'
- run: yarn
- run: yarn lint
- run: webpack --config webpack.config.ui.js --mode production
env:
GA_ID: UA-282164-17
- name: Deploy
uses: JamesIves/github-pages-deploy-action@v4
with:
branch: gh-pages
folder: dist
if: ${{ github.event_name == 'push' }}