docs: Add zkatana to feature support matrix; update Graph Node window version #1551
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 Formatting" | |
on: | |
push: | |
branches: [main] | |
pull_request: {} | |
jobs: | |
check: | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v2 | |
- name: Set up Node.js v20 | |
uses: actions/[email protected] | |
with: | |
node-version: 20 | |
- name: Build and Format | |
run: yarn | |
- name: Check Formatting | |
run: git diff --exit-code |