PDO protocol (peer data operation): Get more history sync + better message retry mechanism #660
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: Check PR health | |
on: [pull_request] | |
jobs: | |
check-lint: | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install Node | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 20.x | |
- name: Install packages | |
run: yarn | |
- name: Check linting | |
run: yarn lint |