Skip to content

Commit

Permalink
chore: improved names of common checks on Github workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
lquixada committed Apr 23, 2022
1 parent 02a63ca commit 24dedb4
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/checks.yml
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ jobs:
- run: make test

lint:
name: Lint code
name: Code Lint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand All @@ -37,7 +37,7 @@ jobs:
- run: make lint

typecheck:
name: Check types
name: Types
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,14 +23,14 @@ jobs:
run: npm install

checks:
name: Checks
name: Check
needs: [install]
uses: ./.github/workflows/checks.yml

# The security job can't run on pull requests opened from forks because
# Github doesn't pass down the SNYK_TOKEN environment variable.
security:
name: Check security
name: Check Security
needs: [install]
runs-on: ubuntu-latest
steps:
Expand Down

0 comments on commit 24dedb4

Please sign in to comment.