From d999802d5b30c1a5aca1d498e6738eb683a14b05 Mon Sep 17 00:00:00 2001 From: Matthias Wahl Date: Wed, 19 Jun 2024 23:45:15 +0200 Subject: [PATCH] No sudo in CI job --- .github/workflows/pr.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index a86d2d0..42c30f5 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -40,7 +40,7 @@ jobs: steps: - uses: actions/checkout@v4.1.1 - name: Install dependencies - run: sudo apt install -y npm + run: apt install -y npm - name: Test run: make test config=debug - name: Test creation of vscode extension