Skip to content

Commit

Permalink
Merge pull request #573 from hackforla/492-DEVOPS-remove-node-install…
Browse files Browse the repository at this point in the history
…ation

Remove Node.js installation in CI pipeline
  • Loading branch information
sellnat77 authored May 4, 2020
2 parents b34d51e + c0ef88a commit 4308eba
Show file tree
Hide file tree
Showing 3 changed files with 0 additions and 21 deletions.
7 changes: 0 additions & 7 deletions .github/workflows/Continuous_Delivery.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/Continuous_Integration_Frontend.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
7 changes: 0 additions & 7 deletions .github/workflows/Publish_Frontend_Package.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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:
Expand Down

0 comments on commit 4308eba

Please sign in to comment.