-
Notifications
You must be signed in to change notification settings - Fork 8
42 lines (32 loc) · 1.05 KB
/
formatting-linting.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
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'
- name: 'Check code formatting'
run: yarn prettier:check
# For now, comment as there're some linting problems
# That avoids moving to tests...
# - name: 'Lint contracts solidity'
# run: yarn lint:contracts:sol >> $GITHUB_STEP_SUMMARY
- name: 'Lint contracts ts and js'
run: yarn lint:contracts:ts >> $GITHUB_STEP_SUMMARY
- name: 'Lint sdk ts and js'
run: yarn lint:sdk:ts >> $GITHUB_STEP_SUMMARY
- name: 'Lint subgraph ts and js'
run: yarn lint:subgraph:ts >> $GITHUB_STEP_SUMMARY
- name: 'Lint configs ts and js'
run: yarn lint:configs:ts >> $GITHUB_STEP_SUMMARY