Compare commits

...

2 Commits

Author SHA1 Message Date
4731ca7d76 [CI] do all install steps at once
Some checks failed
Build / Fetch Build Keyboards (push) Successful in 16s
Build / Build (push) Failing after 39s
2023-07-18 11:10:46 +02:00
4600797f52 [CI] ensure node is installed 2023-07-18 11:10:28 +02:00

View File

@ -20,8 +20,7 @@ jobs:
python3 \ python3 \
python3-pip \ python3-pip \
jq jq
- name: Install yaml2json python3 -m pip install remarshal
run: python3 -m pip install remarshal
- id: set-matrix - id: set-matrix
name: Fetch Build Matrix name: Fetch Build Matrix
run: | run: |
@ -38,6 +37,11 @@ jobs:
fail-fast: false fail-fast: false
matrix: ${{fromJson(needs.matrix.outputs.matrix)}} matrix: ${{fromJson(needs.matrix.outputs.matrix)}}
steps: steps:
- name: Install dependencies
run: |
apt-get update
apt-get install --yes --no-install-recommends \
nodejs
- name: Prepare variables - name: Prepare variables
id: variables id: variables
run: | run: |