chore(deps-dev): bump typescript from 6.0.3 to 7.0.2 in /chat #71
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] | |
| workflow_dispatch: | |
| jobs: | |
| build: | |
| name: Build ${{ matrix.app }} | |
| runs-on: ubuntu-latest | |
| strategy: | |
| fail-fast: false | |
| matrix: | |
| app: [auth-demo, chat, fiber, imagine, justmakeit, vercel-demo] | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| - name: Setup Node | |
| uses: actions/setup-node@v6 | |
| with: | |
| node-version: "22" | |
| cache: npm | |
| cache-dependency-path: ${{ matrix.app }}/package-lock.json | |
| - name: Install | |
| working-directory: ${{ matrix.app }} | |
| run: npm ci | |
| - name: Build | |
| working-directory: ${{ matrix.app }} | |
| run: npm run build | |
| secret-scan: | |
| name: Secret scan | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v7 | |
| with: | |
| fetch-depth: 0 | |
| - name: Gitleaks (CLI — the action requires an org license) | |
| run: | | |
| VERSION=8.30.1 | |
| curl -sL "https://github.com/gitleaks/gitleaks/releases/download/v${VERSION}/gitleaks_${VERSION}_linux_x64.tar.gz" | tar -xz gitleaks | |
| ./gitleaks git --log-opts="--all" --redact -v . | |
| - name: No env files | |
| run: | | |
| FOUND=$(find . -name '.env*' ! -name '.env.example' -not -path './node_modules/*' -not -path './.git/*') | |
| if [ -n "$FOUND" ]; then echo "env files present:"; echo "$FOUND"; exit 1; fi |