diff --git a/ci/grunt.yml b/ci/grunt.yml
new file mode 100644
index 0000000..8c83cb6
--- /dev/null
+++ b/ci/grunt.yml
@@ -0,0 +1,28 @@
+name: NodeJS with Grunt
+
+on:
+ push:
+ branches: [ $default-branch ]
+ pull_request:
+ branches: [ $default-branch ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [12.x, 14.x, 16.x]
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node-version }}
+
+ - name: Build
+ run: |
+ npm install
+ grunt
diff --git a/ci/gulp.yml b/ci/gulp.yml
new file mode 100644
index 0000000..cc5da13
--- /dev/null
+++ b/ci/gulp.yml
@@ -0,0 +1,28 @@
+name: NodeJS with Gulp
+
+on:
+ push:
+ branches: [ $default-branch ]
+ pull_request:
+ branches: [ $default-branch ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [12.x, 14.x, 16.x]
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node-version }}
+
+ - name: Build
+ run: |
+ npm install
+ gulp
diff --git a/ci/properties/grunt.properties.json b/ci/properties/grunt.properties.json
new file mode 100644
index 0000000..c8a5b9f
--- /dev/null
+++ b/ci/properties/grunt.properties.json
@@ -0,0 +1,6 @@
+{
+ "name": "Grunt",
+ "description": "Build a NodeJS project with npm and grunt.",
+ "iconName": "grunt",
+ "categories": ["JavaScript", "TypeScript", "npm", "Grunt"]
+}
diff --git a/ci/properties/gulp.properties.json b/ci/properties/gulp.properties.json
new file mode 100644
index 0000000..658325b
--- /dev/null
+++ b/ci/properties/gulp.properties.json
@@ -0,0 +1,6 @@
+{
+ "name": "Gulp",
+ "description": "Build a NodeJS project with npm and gulp.",
+ "iconName": "gulp",
+ "categories": ["JavaScript", "TypeScript", "npm", "Gulp"]
+}
diff --git a/ci/properties/webpack.properties.json b/ci/properties/webpack.properties.json
new file mode 100644
index 0000000..1e22ccb
--- /dev/null
+++ b/ci/properties/webpack.properties.json
@@ -0,0 +1,6 @@
+{
+ "name": "Webpack",
+ "description": "Build a NodeJS project with npm and webpack.",
+ "iconName": "webpack",
+ "categories": ["JavaScript", "TypeScript", "npm", "Webpack"]
+}
diff --git a/ci/webpack.yml b/ci/webpack.yml
new file mode 100644
index 0000000..8edb34f
--- /dev/null
+++ b/ci/webpack.yml
@@ -0,0 +1,28 @@
+name: NodeJS with Webpack
+
+on:
+ push:
+ branches: [ $default-branch ]
+ pull_request:
+ branches: [ $default-branch ]
+
+jobs:
+ build:
+ runs-on: ubuntu-latest
+
+ strategy:
+ matrix:
+ node-version: [12.x, 14.x, 16.x]
+
+ steps:
+ - uses: actions/checkout@v2
+
+ - name: Use Node.js ${{ matrix.node-version }}
+ uses: actions/setup-node@v1
+ with:
+ node-version: ${{ matrix.node-version }}
+
+ - name: Build
+ run: |
+ npm install
+ npx webpack
diff --git a/icons/grunt.svg b/icons/grunt.svg
new file mode 100644
index 0000000..ce8e4a6
--- /dev/null
+++ b/icons/grunt.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icons/gulp.svg b/icons/gulp.svg
new file mode 100644
index 0000000..a99af85
--- /dev/null
+++ b/icons/gulp.svg
@@ -0,0 +1 @@
+
\ No newline at end of file
diff --git a/icons/webpack.svg b/icons/webpack.svg
new file mode 100644
index 0000000..3e94424
--- /dev/null
+++ b/icons/webpack.svg
@@ -0,0 +1 @@
+
\ No newline at end of file