Skip to content

Bump html-webpack-plugin from 5.5.4 to 5.6.0 in /src/web #32

Bump html-webpack-plugin from 5.5.4 to 5.6.0 in /src/web

Bump html-webpack-plugin from 5.5.4 to 5.6.0 in /src/web #32

Workflow file for this run

name: Web
on:
push:
paths:
- '.github/workflows/web.yml'
pull_request:
paths:
- 'src/web/**'
- 'src/frontend/**'
permissions:
contents: read
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Set up Go
uses: actions/setup-go@v5
with:
go-version: "1.21"
cache-dependency-path: src/certbox/go.sum
- name: Build certgen
run: ./wasm.sh
working-directory: src/certbox/cmd/certgen
- name: Build app
run: |
npm i
npx webpack --config webpack.js --mode production
working-directory: src/web