Fix refgram-sentences typo #28
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
name: Check types and formatting | |
on: | |
pull_request: {} | |
push: | |
branches: [main] | |
jobs: | |
check: | |
name: Check types and formatting | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v2 | |
- name: NPM cache | |
uses: actions/setup-node@v3 | |
with: | |
cache: npm | |
- name: Install dependencies | |
run: npm install | |
- name: Check types | |
run: npm run ts:check | |
- name: Check formatting | |
run: npm run prettier:check |