fix type #1751
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: "Linters" | |
on: push | |
jobs: | |
"Prettier": | |
runs-on: ubuntu-latest | |
container: node:16 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dependencies | |
run: yarn install | |
- name: Get prettier version | |
run: yarn run prettier --version | |
- name: Run prettier check | |
run: yarn run prettier:check |