chore(deps): bump the slack-sdk group across 1 directory with 2 updates #98
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: | |
| pull_request: | |
| push: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: read | |
| concurrency: | |
| group: ci-${{ github.ref }} | |
| cancel-in-progress: true | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v6 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: 20 | |
| cache: npm | |
| - name: Install | |
| run: npm ci | |
| - name: Typecheck | |
| run: npm run typecheck | |
| - name: Test | |
| run: npm test | |
| - name: Build Vercel output | |
| run: npm run build | |
| - name: Vercel output check | |
| run: npm run check:vercel-output | |
| - name: Dependency audit | |
| run: npm run audit:high | |
| - name: Secret scan | |
| run: npm run scan:secrets | |
| - name: MCP isolation | |
| run: npm run check:mcp-isolation | |
| - name: AI docs drift | |
| run: npm run check:ai-docs |