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