Merge pull request #260 from OrderlyNetwork/docs/add-admin-asset-conv… #471
This file contains hidden or 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 for only allowed file changes | |
| on: | |
| - push | |
| - pull_request | |
| jobs: | |
| check: | |
| if: github.repository == 'orderlynetwork/documentation' | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v5 | |
| - name: Install Node | |
| uses: actions/setup-node@v5 | |
| with: | |
| node-version: "24" | |
| - name: Install PNPM | |
| run: npm install --global pnpm@9.0.6 | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Test for no git diff | |
| run: | | |
| npm run update | |
| git diff --exit-code -- :^/sdks/tech-doc |