Skip to content

Commit

Permalink
ci: add linting & formatting workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
heueristik committed May 16, 2024
1 parent cb52ef9 commit 09eda47
Showing 1 changed file with 34 additions and 0 deletions.
34 changes: 34 additions & 0 deletions .github/workflows/formatting-linting.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
name: 'formatting & linting'

on:
workflow_dispatch:
workflow_call:
push:

jobs:
checks:
runs-on: 'ubuntu-latest'
steps:
- name: 'Check out the repo'
uses: 'actions/checkout@v3'

- name: 'Install Node.js'
uses: 'actions/setup-node@v3'
with:
cache: 'yarn'
node-version: 18

- name: 'Install the dependencies'
run: 'yarn install --frozen-lockfile'

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

- name: 'Lint contracts solidity'
run: 'yarn lint:contracts:sol'

- name: 'Lint contracts ts and js'
run: 'yarn lint:contracts:ts'

- name: 'Lint subgraph ts and js'
run: 'yarn lint:subgraph:ts'

0 comments on commit 09eda47

Please sign in to comment.