docs: sync all documentation for Smart Key Extraction + NMH completion #34
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: | |
| swift-core: | |
| name: Swift Core (macOS) | |
| runs-on: macos-14 | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Build | |
| run: cd packages/swift-core && swift build | |
| - name: Test | |
| run: cd packages/swift-core && swift test | |
| typescript: | |
| name: TypeScript (Extensions) | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: '20' | |
| cache: 'npm' | |
| - run: npm ci | |
| - run: npm run type-check | |
| - run: npm run lint | |
| - run: npm run build:all |