build(deps-dev): bump cspell from 8.15.7 to 8.16.0 #117
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
--- | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Install dependencies (Yarn) | |
run: yarn | |
- name: Install Shellcheck | |
run: sudo apt-get install -y shellcheck | |
- name: Lint with Shellcheck | |
run: yarn shellcheck | |
- name: Check spelling | |
run: yarn check-spelling | |
- name: Install sh | |
run: | | |
curl -o shfmt "https://github.com/mvdan/sh/releases/download/v3.7.0/shfmt_v3.7.0_linux_amd64" | |
chmod +x shfmt | |
mv shfmt /usr/local/bin/ | |
- name: Check formatting | |
run: yarn check-formatting | |
name: QA | |
"on": | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master |