other: Updated header text in README.md #1757
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: Node.js CLI Run | |
| on: | |
| push: | |
| branches: [main, dev] | |
| pull_request: | |
| branches: [main, dev] | |
| jobs: | |
| cli-lock: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x, 18.x, 20.x, 22.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: pnpm/action-setup@v4.0.0 | |
| with: | |
| version: 8.x.x | |
| run_install: false | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm build | |
| - run: node ./kipper/cli/bin/run | |
| - run: ./kipper/cli/bin/run | |
| cli-dev: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x, 18.x, 20.x, 22.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: pnpm/action-setup@v4.0.0 | |
| with: | |
| version: 8.x.x | |
| run_install: false | |
| - run: pnpm install | |
| - run: pnpm build | |
| - run: node ./kipper/cli/bin/run | |
| - run: ./kipper/cli/bin/run | |
| cli-prod: | |
| runs-on: ubuntu-latest | |
| strategy: | |
| matrix: | |
| node-version: [16.x, 18.x, 20.x, 22.x] | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - name: Use Node.js ${{ matrix.node-version }} | |
| uses: actions/setup-node@v4 | |
| with: | |
| node-version: ${{ matrix.node-version }} | |
| - uses: pnpm/action-setup@v4.0.0 | |
| with: | |
| version: 8.x.x | |
| run_install: false | |
| - run: pnpm install --frozen-lockfile | |
| - run: pnpm build | |
| - run: pnpm install --prod | |
| - run: node ./kipper/cli/bin/run | |
| - run: ./kipper/cli/bin/run |