Remove dramatic language from chart title #7
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: [master] | |
| pull_request: | |
| branches: [master] | |
| jobs: | |
| build-and-test: | |
| strategy: | |
| matrix: | |
| os: [ubuntu-latest, macos-latest, windows-latest] | |
| node: [18, 20, 22] | |
| fail-fast: false | |
| runs-on: ${{ matrix.os }} | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node }} | |
| - name: Install dependencies | |
| working-directory: packages/cli | |
| run: npm ci | |
| - name: Type check | |
| working-directory: packages/cli | |
| run: npx tsc --noEmit | |
| - name: Build | |
| working-directory: packages/cli | |
| run: npx tsup | |
| - name: Version check | |
| working-directory: packages/cli | |
| run: node dist/index.js --version | |
| - name: Demo snapshot renders | |
| working-directory: packages/cli | |
| run: node dist/index.js --demo --snapshot | |
| env: | |
| COLUMNS: '120' | |
| LINES: '38' | |
| - name: CLI list command | |
| working-directory: packages/cli | |
| run: node dist/index.js list --json |