Skip to content

Commit

Permalink
[Common] add codespell workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
0xVolosnikov committed Aug 18, 2023
1 parent e8fd739 commit 70c6fde
Showing 1 changed file with 24 additions and 0 deletions.
24 changes: 24 additions & 0 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
name: checks

on:
push:
branches:
- master
- staged
pull_request: {}
workflow_dispatch: {}

env:
NODE_OPTIONS: --max_old_space_size=5120

jobs:
codespell:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run CodeSpell
uses: codespell-project/[email protected]
with:
check_hidden: true
check_filenames: true
skip: package-lock.json,node_modules

0 comments on commit 70c6fde

Please sign in to comment.