We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f78fb11 commit 416a453Copy full SHA for 416a453
2 files changed
.devcontainer/linux/Dockerfile
@@ -32,6 +32,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
32
net-tools \
33
sudo \
34
jq \
35
+ yamllint \
36
&& curl -fsSL https://deb.nodesource.com/gpgkey/nodesource-repo.gpg.key | gpg --dearmor -o /etc/apt/keyrings/nodesource.gpg && \
37
echo "deb [signed-by=/etc/apt/keyrings/nodesource.gpg] https://deb.nodesource.com/node_$NODE_MAJOR.x nodistro main" | tee /etc/apt/sources.list.d/nodesource.list && \
38
apt-get update && apt-get install -y --no-install-recommends \
.github/workflows/formatting-checks.yml
@@ -35,3 +35,6 @@ jobs:
- name: Run C Format Checks
run: sh scripts/check_c_formatting.sh
+
39
+ - name: Run YAML Format Checks
40
+ run: bash scripts/yml_linter.sh
0 commit comments