Skip to content

Commit

Permalink
replacing yarn with NPM
Browse files Browse the repository at this point in the history
  • Loading branch information
GavCookCO committed Apr 23, 2024
1 parent 29998ef commit 4263b64
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 8 deletions.
5 changes: 2 additions & 3 deletions .github/workflows/feature.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,5 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ env.node-version }}
- run: yarn install
- run: yarn build
- run: yarn jest
- run: npm install
- run: npm build
9 changes: 4 additions & 5 deletions .github/workflows/pushImage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,9 +27,8 @@ jobs:
uses: actions/setup-node@v3
with:
node-version: ${{ env.node-version }}
- run: yarn install
- run: yarn build
- run: yarn jest
- run: npm install
- run: npm build

imageBuild:
needs: build
Expand Down Expand Up @@ -69,8 +68,8 @@ jobs:
echo "BUILD_VERSION=b_$GIT_COUNT" >> $GITHUB_ENV
echo BUILD_VERSION is ${{ env.BUILD_VERSION }}
- run: yarn install
- run: yarn build
- run: npm install
- run: npm build

- name: Build, tag and push Docker image to AWS ECR
env:
Expand Down

0 comments on commit 4263b64

Please sign in to comment.