From c9ad9357037a503742bd5b550e5f6c1fe2d13b59 Mon Sep 17 00:00:00 2001 From: pawpetr5-ctrl Date: Fri, 30 Jan 2026 04:10:54 +0100 Subject: [PATCH 1/2] Create pitas --- pitas | 1 + 1 file changed, 1 insertion(+) create mode 100644 pitas diff --git a/pitas b/pitas new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/pitas @@ -0,0 +1 @@ + From 4bc1d1a00d77c7b73d72bac3c7e6fe1c85ca06d2 Mon Sep 17 00:00:00 2001 From: pawpetr5-ctrl Date: Fri, 30 Jan 2026 09:13:56 +0100 Subject: [PATCH 2/2] Add GitHub Actions workflow for Node.js with Webpack pitas --- .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