feat: release v1.1.0 with DCS analysis commands and enhanced workflows #32
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: | |
| quality: | |
| name: Code Quality & Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout code | |
| uses: actions/checkout@v4 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: '24' | |
| - name: Install pnpm | |
| uses: pnpm/action-setup@v2 | |
| with: | |
| version: 10.13.1 | |
| - name: Install dependencies | |
| run: pnpm install --ignore-scripts | |
| - name: Check no files generated after install | |
| run: | | |
| if [ -n "$(git status --porcelain)" ]; then | |
| echo "Error: Files were generated or modified after pnpm install" | |
| git status --porcelain | |
| exit 1 | |
| fi | |
| - name: Run secretlint | |
| run: pnpm secretlint |