fix(indexer-native): abandon neon-utils in favor of napi-6 #1583
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/setup-node@v2.1.5 | |
with: | |
node-version: 20 | |
- name: Build and Format | |
run: yarn | |
- name: Check Formatting | |
run: git diff --exit-code |