Skip to content

Commit

Permalink
replace npm with yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
RamRamez committed Jun 10, 2024
1 parent a2cb35b commit 183eb87
Showing 1 changed file with 12 additions and 1 deletion.
13 changes: 12 additions & 1 deletion .github/workflows/staging-pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -42,8 +42,12 @@ jobs:
uses: actions/setup-node@v1
with:
node-version: 18.14.0
- name: Install Yarn
run: npm install -g yarn

- name: Install dependencies
run: yarn ci
run: yarn install

- name: Run linter
run: yarn lint
- name: Run migrations
Expand All @@ -58,6 +62,13 @@ jobs:
steps:
- name: Check out the repo
uses: actions/checkout@v2

- name: Install Yarn
run: npm install -g yarn

- name: Install dependencies
run: yarn install

- name: Build image and push to GitHub Packages
uses: docker/build-push-action@v1
with:
Expand Down

0 comments on commit 183eb87

Please sign in to comment.