Skip to content

Commit

Permalink
ci(ci): run apt-get update for ubuntu tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Fdawgs committed Jul 29, 2024
1 parent 48e4693 commit 7122582
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -126,7 +126,9 @@ jobs:

- name: Install Ubuntu dependencies
if: matrix.os == 'ubuntu-latest'
run: sudo apt-get -y install unrtf
run: |
sudo apt-get -q update
sudo apt-get -y install unrtf
- name: Run tests
run: npm run jest:coverage
Expand Down

0 comments on commit 7122582

Please sign in to comment.