diff --git a/.github/workflows/contracts-tests.yml b/.github/workflows/contracts-tests.yml index dc7b798f..3aa298d2 100644 --- a/.github/workflows/contracts-tests.yml +++ b/.github/workflows/contracts-tests.yml @@ -1,4 +1,4 @@ -name: 'contracts' +name: 'Contracts' env: INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} @@ -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/formatting-check.yml deleted file mode 100644 index f5f2e521..00000000 --- a/.github/workflows/formatting-check.yml +++ /dev/null @@ -1,31 +0,0 @@ -name: 'formatting' - -env: - INFURA_API_KEY: ${{ secrets.INFURA_API_KEY }} - working-directory: . - -on: - workflow_dispatch: - push: - -jobs: - checks: - runs-on: 'ubuntu-latest' - defaults: - run: - working-directory: ${{env.working-directory}} - steps: - - name: 'Check out the repo' - uses: 'actions/checkout@v3' - - - name: 'Install Node.js' - uses: 'actions/setup-node@v3' - with: - cache: 'yarn' - node-version: 16 - - - name: 'Install the dependencies' - run: 'yarn install' - - - name: 'Check code formatting' - run: yarn prettier:check