-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Update CI - separate misspell, use re-usable action
Update the actions/checkout on the shellcheck. Install shellcheck before trying to use. Use the client runners.
- Loading branch information
1 parent
320649a
commit 23f6211
Showing
2 changed files
with
25 additions
and
20 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
name: Misspell | ||
on: | ||
push: | ||
workflow_dispatch: | ||
|
||
# This allows a subsequently queued workflow run to interrupt previous runs | ||
concurrency: | ||
group: perts-misspell-'${{ github.workflow }} @ ${{ github.event.pull_request.head.label || github.head_ref || github.ref }}' | ||
cancel-in-progress: true | ||
|
||
jobs: | ||
misspell: | ||
runs-on: client | ||
steps: | ||
- name: Check out code | ||
uses: actions/checkout@v4 | ||
- name: Remove folders we do not want to check (as we do not control them) | ||
run: rm -rf node_modules vendor-licenses.txt | ||
- name: Misspell | ||
uses: PelionIoT/actions/.github/actions/misspell@main | ||
with: | ||
exceptions: "mosquitto" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters