Project things #1
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: Lint with Shellcheck | |
run: yarn shellcheck | |
- name: Check spelling | |
run: yarn check-spelling | |
- name: Check formatting | |
run: yarn check-formatting | |
name: QA | |
'on': | |
pull_request: | |
branches: | |
- master | |
push: | |
branches: | |
- master |