Skip to content

Commit

Permalink
Code review fix added
Browse files Browse the repository at this point in the history
  • Loading branch information
jitu5 committed Apr 12, 2024
1 parent da8b24e commit 7a38aca
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 7 deletions.
2 changes: 1 addition & 1 deletion .github/actions/install_node_dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ description: Sets up a specific Node.js version, caches Node modules, and instal
inputs:
node-version:
description: 'Node.js version'
required: true
required: false
default: '16.13.2'

package-path:
Expand Down
6 changes: 2 additions & 4 deletions .github/actions/setup_tests/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -4,11 +4,11 @@ description: Sets up the testing environment by setting up Python and Node.js, c
inputs:
os:
description: 'Operating system'
required: true
required: false
default: 'ubuntu-latest'
python-version:
description: 'Python version'
required: true
required: false
default: '3.9'

runs:
Expand Down Expand Up @@ -38,8 +38,6 @@ runs:

- name: Setup Node.js and Install Dependencies
uses: "./.github/actions/install_node_dependencies"
with:
node-version: '16.13.2'

- name: Build React application
run: |-
Expand Down
2 changes: 0 additions & 2 deletions .github/workflows/javascript-lint-and-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -35,8 +35,6 @@ jobs:

- name: Setup Node.js and Install Dependencies
uses: "./.github/actions/install_node_dependencies"
with:
node-version: '16.13.2'

- name: Setup Cypress requirements
run: |-
Expand Down

0 comments on commit 7a38aca

Please sign in to comment.