Skip to content

Commit

Permalink
fix failing workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
samueltuyizere committed Dec 26, 2024
1 parent 367a458 commit 5621e65
Showing 1 changed file with 5 additions and 7 deletions.
12 changes: 5 additions & 7 deletions .github/workflows/publish.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ jobs:
node-version: 20

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

- name: Run linter
run: npm run lint
Expand All @@ -39,11 +39,10 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
node-version: 20

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

- name: Run build
run: npm run build
Expand All @@ -66,11 +65,10 @@ jobs:
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 18
cache: 'npm'
node-version: 20

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

- name: Build the project
run: npm run build
Expand Down

0 comments on commit 5621e65

Please sign in to comment.