Skip to content

Commit a0a5c67

Browse files
committed
CI(sanity-check): fix npm installation via apt
It was giving 404 errors.
1 parent 5ea05b2 commit a0a5c67

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

.github/workflows/CI.yml

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,10 @@ jobs:
6464
fetch-depth: 0
6565

6666
- name: Install dependencies of commitlint
67-
run: sudo apt install --yes npm
67+
run: |
68+
sudo apt update --yes
69+
sudo apt install --yes npm
70+
6871
- name: Pull our commitlint configuration
6972
run: |
7073
git clone https://github.com/nblockchain/conventions.git

0 commit comments

Comments
 (0)