Skip to content

Commit

Permalink
ci: improve workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed Oct 12, 2023
1 parent 2bb05a7 commit bf63f00
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 3 deletions.
4 changes: 2 additions & 2 deletions .github/workflows/contracts-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,8 @@ jobs:
run: 'yarn install'
working-directory: contracts

- name: 'Lint the code'
run: 'yarn lint'
- name: 'Lint the contracts'
run: 'yarn lint:sol'
working-directory: contracts

- name: 'Build the contracts'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: 'formatting'
name: 'Linting & Formatting'

env:
INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }}
Expand Down Expand Up @@ -27,5 +27,8 @@ jobs:
- name: 'Install the dependencies'
run: 'yarn install'

- name: 'Lint the code'
run: 'yarn lint:ts'

- name: 'Check code formatting'
run: yarn prettier:check

0 comments on commit bf63f00

Please sign in to comment.