chore(actions) add typos

This commit is contained in:
coderaiser 2022-06-14 14:39:06 +03:00
parent ef10ebe97c
commit 975d4eb8a0

View file

@ -23,6 +23,23 @@ jobs:
run: npm install
- name: Lint
run: redrun fix:lint
- uses: actions/cache@v3
with:
path: |
~/.cargo/bin/
~/.cargo/registry/index/
~/.cargo/registry/cache/
~/.cargo/git/db/
target/
key: ${{ runner.os }}-cargo-${{ hashFiles('**/Cargo.lock') }}
- name: Typos Install
run: cargo install typos-cli || echo 'already installed'
- name: Typos
run: typos --write-changes
- name: Commit fixes
uses: EndBug/add-and-commit@v7
with: