Skip to content

Commit

Permalink
updated the node version
Browse files Browse the repository at this point in the history
  • Loading branch information
gouravmore committed Jun 19, 2024
1 parent add473d commit b6c421b
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/all-dev-rig.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ jobs:
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '18' # Updated to Node.js 18
node-version: '18'

- name: Install AWS CLI
run: |
Expand All @@ -30,9 +30,17 @@ jobs:
aws configure set aws_secret_access_key ${{ secrets.AWS_SECRET_ACCESS_KEY }}
aws configure set default.region ${{ secrets.AWS_REGION }}
- name: Clean up node_modules and package-lock.json
run: |
rm -rf node_modules
rm -f package-lock.json
- name: Install Dependencies
run: npm install --legacy-peer-deps

- name: Run Husky Install
run: npm run prepare

- name: Build and Package Application
env:
SKIP_PREFLIGHT_CHECK: ${{ vars.SKIP_PREFLIGHT_CHECK }}
Expand Down

0 comments on commit b6c421b

Please sign in to comment.