Skip to content

Commit

Permalink
CI(sanity-check): fix npm installation via apt
Browse files Browse the repository at this point in the history
It was giving 404 errors.
  • Loading branch information
knocte committed Mar 6, 2024
1 parent 5ea05b2 commit a0a5c67
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion .github/workflows/CI.yml
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,10 @@ jobs:
fetch-depth: 0

- name: Install dependencies of commitlint
run: sudo apt install --yes npm
run: |
sudo apt update --yes
sudo apt install --yes npm
- name: Pull our commitlint configuration
run: |
git clone https://github.com/nblockchain/conventions.git
Expand Down

0 comments on commit a0a5c67

Please sign in to comment.