Skip to content

Commit d40a974

Browse files
authored
feat(ci): add lint-actions step to build.yaml (#5957)
* feat(ci): add lint-actions step to build.yaml This adds a new job to the Build CI pipeline to lint our GitHub Actions. By doing this, we can prevent typos from slipping in. Fixes #5776 * fix: disable shellcheck in actionlint I don't think we want to enable this for now. * fix: ignore set-output warnings for now It's deprecated but there isn't a reason to move away from using it yet.
1 parent 67416b7 commit d40a974

File tree

1 file changed

+12
-0
lines changed

1 file changed

+12
-0
lines changed

.github/workflows/build.yaml

+12
Original file line numberDiff line numberDiff line change
@@ -139,6 +139,18 @@ jobs:
139139
if: steps.changed-files.outputs.any_changed == 'true'
140140
run: yarn lint:ts
141141

142+
lint-actions:
143+
name: Lint GitHub Actions
144+
runs-on: ubuntu-latest
145+
steps:
146+
- name: Checkout repo
147+
uses: actions/checkout@v3
148+
- name: Check workflow files
149+
run: |
150+
bash <(curl https://raw.githubusercontent.com/rhysd/actionlint/7fdc9630cc360ea1a469eed64ac6d78caeda1234/scripts/download-actionlint.bash)
151+
./actionlint -color -shellcheck= -ignore "set-output"
152+
shell: bash
153+
142154
test-unit:
143155
name: Run unit tests
144156
runs-on: ubuntu-20.04

0 commit comments

Comments
 (0)