From edd7400d76d8ff347b62a0c662070b5256564be1 Mon Sep 17 00:00:00 2001 From: Ninad Kavimandan Date: Thu, 24 Jun 2021 11:00:38 +0530 Subject: [PATCH] removed CI from the name --- ci/grunt.yml | 9 +++++---- ci/gulp.yml | 9 +++++---- ci/webpack.yml | 9 +++++---- 3 files changed, 15 insertions(+), 12 deletions(-) diff --git a/ci/grunt.yml b/ci/grunt.yml index 83464d1..767e8fa 100644 --- a/ci/grunt.yml +++ b/ci/grunt.yml @@ -1,4 +1,4 @@ -name: Grunt CI +name: Grunt on: push: @@ -17,11 +17,12 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 with: - node-version: {{{ matrix.node-version }}} + node-version: ${{ matrix.node-version }} - - name: npm install, build + - name: Build run: | npm install grunt diff --git a/ci/gulp.yml b/ci/gulp.yml index 708f9b3..962d15f 100644 --- a/ci/gulp.yml +++ b/ci/gulp.yml @@ -1,4 +1,4 @@ -name: Gulp CI +name: Gulp on: push: @@ -17,11 +17,12 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 with: - node-version: {{{ matrix.node-version }}} + node-version: ${{ matrix.node-version }} - - name: npm install, build + - name: Build run: | npm install gulp diff --git a/ci/webpack.yml b/ci/webpack.yml index d79e907..eb85baf 100644 --- a/ci/webpack.yml +++ b/ci/webpack.yml @@ -1,4 +1,4 @@ -name: Webpack CI +name: Webpack on: push: @@ -17,11 +17,12 @@ jobs: steps: - uses: actions/checkout@v2 - - uses: actions/setup-node@v1 + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v1 with: - node-version: {{{ matrix.node-version }}} + node-version: ${{ matrix.node-version }} - - name: npm install, build + - name: Build run: | npm install -g webpack webpack-cli --save-dev npm install