From 2c0b5c8c10564825b9ccb369f1015379a15d9b0f Mon Sep 17 00:00:00 2001 From: lalo458 <87552145+lalo458@users.noreply.github.com> Date: Tue, 31 Mar 2026 12:11:53 -0600 Subject: [PATCH 1/2] Actualizar README.md --- README.md | 19 +------------------ 1 file changed, 1 insertion(+), 18 deletions(-) diff --git a/README.md b/README.md index e075c2b23df3..c629b8adaba7 100644 --- a/README.md +++ b/README.md @@ -47,24 +47,7 @@ There are a few more things to know when you're getting started with this repo: ## READMEs -In addition to the README you're reading right now, this repo includes other READMEs that describe the purpose of each subdirectory in more detail: - -- [content/README.md](content/README.md) -- [content/graphql/README.md](content/graphql/README.md) -- [content/rest/README.md](content/rest/README.md) -- [contributing/README.md](contributing/README.md) -- [data/README.md](data/README.md) -- [data/reusables/README.md](data/reusables/README.md) -- [data/variables/README.md](data/variables/README.md) -- [includes/liquid-tags/README.md](includes/liquid-tags/README.md) -- [includes/README.md](includes/README.md) -- [javascripts/README.md](javascripts/README.md) -- [layouts/README.md](layouts/README.md) -- [lib/liquid-tags/README.md](lib/liquid-tags/README.md) -- [middleware/README.md](middleware/README.md) -- [script/README.md](script/README.md) -- [stylesheets/README.md](stylesheets/README.md) -- [tests/README.md](tests/README.md) +In addition to the README you're reading right now, this repo includes other READMEs that describe the purpose of each subdirectory in more detail ## License From e5917a13385f61f168700dc1e3361db9e63fc692 Mon Sep 17 00:00:00 2001 From: lalo458 <87552145+lalo458@users.noreply.github.com> Date: Wed, 8 Apr 2026 05:30:51 -0600 Subject: [PATCH 2/2] 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 000000000000..9626ff6d3589 --- /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