Update paratime-node.mdx p2p.port config path and default value #965
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: ci-lint | |
on: | |
pull_request: | |
branches: [main] | |
jobs: | |
ci-lint: | |
name: lint | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: true | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: 18.x | |
cache: yarn | |
- name: Install fonts | |
run: | | |
sudo apt install fonts-noto-core -y | |
- name: Yarn | |
run: | | |
yarn install --frozen-lockfile | |
- name: Mermaid diagrams synced with sources | |
run: | | |
yarn diagrams | |
git diff --exit-code |