Create webpack.yml

This commit is contained in:
Maksim Kudrytski 2025-09-09 13:02:52 +01:00 committed by GitHub
parent 121bf640fa
commit f0dabfa0b8
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

30
.github/workflows/webpack.yml vendored Normal file
View File

@ -0,0 +1,30 @@
name: Build with Webpack
on:
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x]
steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- name: Build
run: |
npm install
npm run bundle:standalone
- uses: actions/upload-artifact@v4
with:
path: |
./dist
retention-days: 1