From c9d8d471941bd9799e059c537197fdac30474025 Mon Sep 17 00:00:00 2001 From: "Faisal M. AlOtaibi" <205647957+hub966@users.noreply.github.com> Date: Tue, 21 Jul 2026 07:11:22 +0300 Subject: [PATCH 1/3] Add GitHub Actions workflow for NodeJS with Webpack --- .github/workflows/webpack.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 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 000000000..9626ff6d3 --- /dev/null +++ b/.github/workflows/webpack.yml @@ -0,0 +1,28 @@ +name: NodeJS with Webpack + +on: + push: + branches: [ "main" ] + pull_request: + branches: [ "main" ] + +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 + npx webpack From 6062aae6e76c703234d72e6197af776ca901dc9c Mon Sep 17 00:00:00 2001 From: snyk-bot Date: Tue, 21 Jul 2026 04:56:59 +0000 Subject: [PATCH 2/3] fix: accelerators/mirror-lakehouse/Dockerfile.dev to reduce vulnerabilities The following vulnerabilities are fixed with an upgrade: - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-14975915 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-16000010 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-16000010 - https://snyk.io/vuln/SNYK-UPSTREAM-NODE-14928492 - https://snyk.io/vuln/SNYK-ALPINE321-OPENSSL-15121241 --- accelerators/mirror-lakehouse/Dockerfile.dev | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/accelerators/mirror-lakehouse/Dockerfile.dev b/accelerators/mirror-lakehouse/Dockerfile.dev index b4e3c9a60..0538b1ad6 100644 --- a/accelerators/mirror-lakehouse/Dockerfile.dev +++ b/accelerators/mirror-lakehouse/Dockerfile.dev @@ -1,5 +1,5 @@ # Development Docker configuration for Lakehouse Mirror -FROM node:18-alpine +FROM node:26.5.0-alpine # Set working directory WORKDIR /app From bce8182acf110d3b474db64b2a6337cd1217aa99 Mon Sep 17 00:00:00 2001 From: "copilot-swe-agent[bot]" <198982749+Copilot@users.noreply.github.com> Date: Tue, 21 Jul 2026 05:02:24 +0000 Subject: [PATCH 3/3] fix: run webpack workflow from mirror-lakehouse project --- .github/workflows/webpack.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml index 9626ff6d3..6fbe27b09 100644 --- a/.github/workflows/webpack.yml +++ b/.github/workflows/webpack.yml @@ -24,5 +24,6 @@ jobs: - name: Build run: | - npm install - npx webpack + cd accelerators/mirror-lakehouse + npm run install:all + npm run build