From fdbaf3079c1a3b0019f9a0eac3cb7867b2dad417 Mon Sep 17 00:00:00 2001 From: Cecil500 <151483635+Cecil500@users.noreply.github.com> Date: Mon, 9 Dec 2024 00:14:12 -0500 Subject: [PATCH 1/3] Update DEVELOPMENT.md --- DEVELOPMENT.md | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 9d35303d..25e31aa9 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -1,5 +1,6 @@ # Local development - +git commit -am "Add feature xyz" +git push origin feature-xyz Below is a list of commands you will probably find useful. ## `yarn start` From 63df25f47d06b609166204f9b8da722a15fbd9c1 Mon Sep 17 00:00:00 2001 From: Cecil500 <151483635+Cecil500@users.noreply.github.com> Date: Mon, 9 Dec 2024 00:27:29 -0500 Subject: [PATCH 2/3] Create npm-grunt.yml --- .github/workflows/npm-grunt.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/npm-grunt.yml diff --git a/.github/workflows/npm-grunt.yml b/.github/workflows/npm-grunt.yml new file mode 100644 index 00000000..5ef7a9ae --- /dev/null +++ b/.github/workflows/npm-grunt.yml @@ -0,0 +1,28 @@ +name: NodeJS with Grunt + +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 + grunt From 3f0b57f825fabef3f2bd50e8cf146ff18bbc8541 Mon Sep 17 00:00:00 2001 From: Cecil500 <151483635+Cecil500@users.noreply.github.com> Date: Sat, 28 Dec 2024 03:40:06 -0500 Subject: [PATCH 3/3] Update DEVELOPMENT.md --- DEVELOPMENT.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 25e31aa9..22c81eb7 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -1,4 +1,4 @@ -# Local development + # Local development git commit -am "Add feature xyz" git push origin feature-xyz Below is a list of commands you will probably find useful.