-
Notifications
You must be signed in to change notification settings - Fork 0
54 lines (45 loc) · 1.17 KB
/
lint.yaml
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
43
44
45
46
47
48
49
50
51
52
53
54
name: Lint
on:
push:
branches:
- dev
pull_request:
workflow_dispatch:
inputs:
force_lint_files:
description: 'Force lint files (true/false)'
required: false
default: 'false'
jobs:
files:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18.12.1
- name: Clear Yarn cache
run: yarn cache clean
- name: Cache Yarn dependencies
uses: actions/cache@v3
with:
path: |
~/.cache/yarn
node_modules
key: ${{ runner.OS }}-yarn-cache-${{ hashFiles('**/yarn.lock') }}-v2
restore-keys: |
${{ runner.OS }}-yarn-cache-
- name: Clear Yarn cache
run: yarn cache clean
- name: Install
run: yarn --no-progress --non-interactive --frozen-lockfile
- name: Build packages
run: yarn build
env:
BLOCK_NUMBER: 15946543
NETWORK_FORK: 'mainnet'
MAINNET_URL: ${{ secrets.MAINNET_URL }}
- name: Lint
run: yarn lint
- name: Format
run: yarn format:check