Reduce staking rewards from 1370880 to 1321920 as per GP008 in zillion #2316
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: "Linting" | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
branches: | |
- main | |
release: | |
types: | |
- created | |
jobs: | |
build: | |
runs-on: ubuntu-22.04 | |
name: "Linting" | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- uses: pnpm/action-setup@v2 | |
with: | |
version: 6.0.2 | |
- name: "Installing dependencies" | |
run: | | |
pnpm i | |
- name: Trunk cache | |
id: cache-trunk | |
uses: actions/[email protected] | |
with: | |
path: ~/.cache/trunk/ | |
key: ${{ runner.os }}-trunk | |
- name: Trunk Check | |
uses: trunk-io/[email protected] |