From 62ab40c21b94b233b6ca704073ebda29785c9f1a Mon Sep 17 00:00:00 2001 From: ilogin <1107450@gmail.com> Date: Fri, 1 May 2020 00:05:05 -0700 Subject: [PATCH] Remove Node.js installation in CI pipeline --- .github/workflows/Continuous_Delivery.yml | 7 ------- .github/workflows/Continuous_Integration_Frontend.yml | 7 ------- .github/workflows/Publish_Frontend_Package.yml | 7 ------- 3 files changed, 21 deletions(-) diff --git a/.github/workflows/Continuous_Delivery.yml b/.github/workflows/Continuous_Delivery.yml index 1482c80d0..64f633898 100644 --- a/.github/workflows/Continuous_Delivery.yml +++ b/.github/workflows/Continuous_Delivery.yml @@ -14,15 +14,8 @@ env: jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [11.x] steps: - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - name: Rebuild sass run: npm rebuild node-sass - name: Install Packages diff --git a/.github/workflows/Continuous_Integration_Frontend.yml b/.github/workflows/Continuous_Integration_Frontend.yml index 56d651843..bd21a9b39 100644 --- a/.github/workflows/Continuous_Integration_Frontend.yml +++ b/.github/workflows/Continuous_Integration_Frontend.yml @@ -4,15 +4,8 @@ on: [pull_request] jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [11.x] steps: - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - name: Install Packages run: npm install - name: Lint diff --git a/.github/workflows/Publish_Frontend_Package.yml b/.github/workflows/Publish_Frontend_Package.yml index ef754c403..69f1c1f79 100644 --- a/.github/workflows/Publish_Frontend_Package.yml +++ b/.github/workflows/Publish_Frontend_Package.yml @@ -7,15 +7,8 @@ on: jobs: build: runs-on: ubuntu-latest - strategy: - matrix: - node-version: [11.x] steps: - uses: actions/checkout@v1 - - name: Use Node.js ${{ matrix.node-version }} - uses: actions/setup-node@v1 - with: - node-version: ${{ matrix.node-version }} - name: Build and Publish to Registry uses: elgohr/Publish-Docker-Github-Action@master with: