add richtext facet for descriptions of activity claim #267
Workflow file for this run
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: Test | |
| on: | |
| push: | |
| branches: [main, develop] | |
| pull_request: | |
| branches: [main, develop] | |
| jobs: | |
| test: | |
| runs-on: blacksmith-4vcpu-ubuntu-2404 | |
| steps: | |
| - uses: actions/checkout@v6 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "20" | |
| cache: "npm" | |
| - name: Install dependencies | |
| run: npm ci | |
| - name: Patch lex-cli to fix validation exit code bug | |
| run: | | |
| sed -i 's|// skip|throw e;|g' node_modules/@atproto/lex-cli/dist/util.js | |
| - name: Generate SCHEMAS.md | |
| run: npm run gen-schemas-md | |
| - name: Ensure SCHEMAS.md up to date / no diffs in worktree | |
| run: git diff --exit-code | |
| - name: Run checks | |
| run: npm run check |