Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update lint commands in workflows #107

Merged
merged 2 commits into from
Aug 11, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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