Skip to content

Commit 5a3e4b3

Browse files
authored
fix(dev): ensure ci step has jq available (#18322)
1 parent e548b99 commit 5a3e4b3

File tree

2 files changed

+3
-1
lines changed

2 files changed

+3
-1
lines changed

.github/workflows/ci.yml

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -133,6 +133,8 @@ jobs:
133133
path: dev/environment
134134
export-variables: true
135135
keys-case: upper
136+
- name: Install jq
137+
run: apt-get update && apt-get install -y jq
136138
- name: Check Database
137139
run: bin/db-check
138140
env:

bin/db-check

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash
2-
set -e
2+
set -ex
33

44
# When on GitHub Actions, if a label is present on the PR, skip the check.
55
if [ -n "$GITHUB_ACTIONS" ]; then

0 commit comments

Comments
 (0)