From cd06186199fc282d42ea5373a3f0e38a84d83e64 Mon Sep 17 00:00:00 2001 From: Manuel Alejandro Vargas Ortiz <252698001+3350511721a-ship-it@users.noreply.github.com> Date: Sun, 18 Jan 2026 00:10:04 -0600 Subject: [PATCH 1/2] Add Makefile CI workflow for GitHub Actions --- .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 0000000..9626ff6 --- /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 31de130a528c9be8925b81db61df66ee3b8996e5 Mon Sep 17 00:00:00 2001 From: B2TXZ <259410072+boomboomtxzzit-coder@users.noreply.github.com> Date: Fri, 20 Feb 2026 12:31:30 +0630 Subject: [PATCH 2/2] \webpack # RC version steps: - uses: actions/checkout@v6 - uses: actions/setup-go@v6 with: go-version: '1.24.0-rc.1' # The Go version to download (if necessary) and use - run: go version