diff --git a/.github/workflows/contracts-tests.yml b/.github/workflows/contracts-tests.yml index dc7b798f..a9795829 100644 --- a/.github/workflows/contracts-tests.yml +++ b/.github/workflows/contracts-tests.yml @@ -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' diff --git a/.github/workflows/formatting-check.yml b/.github/workflows/style-check.yml similarity index 87% rename from .github/workflows/formatting-check.yml rename to .github/workflows/style-check.yml index f5f2e521..10f3d434 100644 --- a/.github/workflows/formatting-check.yml +++ b/.github/workflows/style-check.yml @@ -1,4 +1,4 @@ -name: 'formatting' +name: 'Linting & Formatting' env: INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} @@ -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