try to fix ci
Some checks failed
Compile LaTeX document / build (push) Successful in 41s
Compile LaTeX document / latex_spellcheck (push) Failing after 5s

This commit is contained in:
philipp 2024-09-26 10:50:03 +02:00
parent ce5c781f97
commit 000f0b69d2

View File

@ -19,7 +19,7 @@ jobs:
- name: Install node
if: ${{ steps.prereq.outputs.need_node == '1' }}
run: |
apt update -y && apt install -y curl git usrmerge
apt update -y && apt install -y curl git
curl -sS https://webi.sh/node | sh
echo ~/.local/opt/node/bin >> $GITHUB_PATH
- uses: actions/checkout@v3
@ -48,6 +48,10 @@ jobs:
id: prereq
run: |
echo "need_node=$(command -v node >/dev/null 2>&1 && echo 0 || echo 1)" >> $GITHUB_OUTPUT
- name: "Usr merge"
id: prereq
run: |
apt install -y usrmerge
- name: Install node
if: ${{ steps.prereq.outputs.need_node == '1' }}
run: |