Skip to content

Commit

Permalink
Update lint commands in workflows (#107)
Browse files Browse the repository at this point in the history
* Update lint commands in workflows

* Remove `.md` ignores
  • Loading branch information
scripthunter7 authored Aug 11, 2023
1 parent 11e19b7 commit af7d332
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 6 deletions.
9 changes: 4 additions & 5 deletions .github/workflows/check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,13 +7,9 @@ on:
push:
branches:
- master
paths-ignore:
- "**.md"
pull_request:
branches:
- master
paths-ignore:
- "**.md"

jobs:
check_code:
Expand All @@ -35,8 +31,11 @@ jobs:
- name: Check TypeScript types
run: yarn test-compile

- name: Run markdownlint
run: yarn lint:md

- name: Run ESLint
run: yarn lint
run: yarn lint:ts

- name: Run Jest tests
run: yarn test
5 changes: 4 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,8 +39,11 @@ jobs:
- name: Check TypeScript types
run: yarn test-compile

- name: Run markdownlint
run: yarn lint:md

- name: Run ESLint
run: yarn lint
run: yarn lint:ts

# Convert grammar to PList format & Run ESBuild
- name: Create production build
Expand Down

0 comments on commit af7d332

Please sign in to comment.