From f0dabfa0b8febeb0ebbb8643c2971a982be66875 Mon Sep 17 00:00:00 2001 From: Maksim Kudrytski Date: Tue, 9 Sep 2025 13:02:52 +0100 Subject: [PATCH] Create webpack.yml --- .github/workflows/webpack.yml | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 .github/workflows/webpack.yml diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml new file mode 100644 index 00000000..d18159db --- /dev/null +++ b/.github/workflows/webpack.yml @@ -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