other: Changed baseBranches
in renovate.json to dev branches
#1720
This file contains 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] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: pnpm/[email protected] | |
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] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: pnpm/[email protected] | |
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] | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- uses: pnpm/[email protected] | |
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 |