Skip to content

Commit

Permalink
add spelling check
Browse files Browse the repository at this point in the history
  • Loading branch information
vitaly-t committed Apr 21, 2024
1 parent f57c846 commit 1c3b7c3
Showing 1 changed file with 7 additions and 5 deletions.
12 changes: 7 additions & 5 deletions .github/workflows/ci.yml
Expand Up @@ -7,22 +7,24 @@ on:
branches:
- '**'
jobs:
check-lint:
name: Lint
timeout-minutes: 15
check-pre-check:
name: PreCheck
timeout-minutes: 5
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Use Node.js 18
- name: Use Node.js 20
uses: actions/setup-node@v3
with:
node-version: 18
node-version: 20
- name: Install Dependencies
run: npm install
- name: TypeScript Lint
run: npm run tslint
- name: ESLint
run: npm run lint
- name: Spelling Check
run: npm run spelling
check-postgres:
strategy:
matrix:
Expand Down

0 comments on commit 1c3b7c3

Please sign in to comment.