From 64a66cc158863cd4482f25fac7c0c276ca3d1940 Mon Sep 17 00:00:00 2001 From: GitHub Actions Date: Mon, 26 Jul 2021 11:15:04 +0000 Subject: [PATCH] Updating GHES workflows --- ci/grunt.yml | 28 +++++++++++++++++++++++++++ ci/gulp.yml | 28 +++++++++++++++++++++++++++ ci/properties/grunt.properties.json | 6 ++++++ ci/properties/gulp.properties.json | 6 ++++++ ci/properties/webpack.properties.json | 6 ++++++ ci/webpack.yml | 28 +++++++++++++++++++++++++++ icons/grunt.svg | 1 + icons/gulp.svg | 1 + icons/webpack.svg | 1 + 9 files changed, 105 insertions(+) create mode 100644 ci/grunt.yml create mode 100644 ci/gulp.yml create mode 100644 ci/properties/grunt.properties.json create mode 100644 ci/properties/gulp.properties.json create mode 100644 ci/properties/webpack.properties.json create mode 100644 ci/webpack.yml create mode 100644 icons/grunt.svg create mode 100644 icons/gulp.svg create mode 100644 icons/webpack.svg 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