Remove project title from README #49
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: CI | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [20, 22] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: pnpm/action-setup@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| cache: pnpm | |
| - run: pnpm install --frozen-lockfile | |
| - name: Typecheck all packages | |
| run: pnpm -r typecheck | |
| - name: Build all packages | |
| run: pnpm -r build | |
| - name: Run tests | |
| run: pnpm -r test | |
| - name: Verify package tarballs | |
| run: pnpm run release:verify-packs | |
| - name: Validate package exports | |
| run: | | |
| node -e "import('@workspacejson/spec')" | |
| node -e "import('@workspacejson/rules')" | |
| node -e "import('agents-audit')" | |
| - name: Run agents-audit on this repo | |
| run: node packages/agents-audit/dist/cli.js scan . --fail-on error |