From 4f73903bd91b3ceb3cc02505a971e2610ab40d6d Mon Sep 17 00:00:00 2001 From: JasonHmar Date: Fri, 21 Aug 2026 04:24:03 +0400 Subject: [PATCH 1/2] Add GitHub Actions workflow for Node.js 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 0000000000000..df7ee86094607 --- /dev/null +++ b/.github/workflows/webpack.yml @@ -0,0 +1,28 @@ +name: NodeJS with Webpack + +on: + push: + branches: [ "latest" ] + pull_request: + branches: [ "latest" ] + +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 4c0fc166b7b6818a865713ee2015ccab3bf35c9e Mon Sep 17 00:00:00 2001 From: JasonHmar Date: Fri, 21 Aug 2026 04:25:07 +0400 Subject: [PATCH 2/2] Revert "Add GitHub Actions workflow for Node.js with Webpack" --- .github/workflows/webpack.yml | 28 ---------------------------- 1 file changed, 28 deletions(-) delete mode 100644 .github/workflows/webpack.yml diff --git a/.github/workflows/webpack.yml b/.github/workflows/webpack.yml deleted file mode 100644 index df7ee86094607..0000000000000 --- a/.github/workflows/webpack.yml +++ /dev/null @@ -1,28 +0,0 @@ -name: NodeJS with Webpack - -on: - push: - branches: [ "latest" ] - pull_request: - branches: [ "latest" ] - -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