ci: run as root for make install

This commit is contained in:
2026-02-24 00:14:20 +00:00
parent ecb375b5f0
commit 413318e75c
+3 -1
View File
@@ -47,6 +47,7 @@ jobs:
runs-on: ubuntu-latest runs-on: ubuntu-latest
container: container:
image: invent-registry.kde.org/neon/docker-images/plasma:developer image: invent-registry.kde.org/neon/docker-images/plasma:developer
options: --user root
steps: steps:
- uses: actions/checkout@v4 - uses: actions/checkout@v4
@@ -60,7 +61,8 @@ jobs:
run: npm i -g prettier@3.8.1 run: npm i -g prettier@3.8.1
- name: Install make - name: Install make
run: apt-get install -y --no-install-recommends make run: |
apt-get install -y --no-install-recommends make
- name: Run lint checks - name: Run lint checks
run: make lint run: make lint