Bump webpack from 5.93.0 to 5.94.0 #31
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches-ignore: | |
- master | |
paths-ignore: | |
- .github/** | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build | |
runs-on: ubuntu-latest | |
steps: | |
- name: Clone repository | |
uses: actions/checkout@v3 | |
- name: Setup Node | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '18.18.2' | |
- name: Install pnpm and dependencies | |
run: | | |
npm install -g [email protected] | |
pnpm install | |
- name: Build production | |
run: pnpm run build |