Skip to content

bumped node engine version in all package.json and CI files #16

bumped node engine version in all package.json and CI files

bumped node engine version in all package.json and CI files #16

Workflow file for this run

name: CI
on:
push:
branches:
- main
pull_request:
jobs:
main:
name: Nx Cloud - Main Job
uses: nrwl/ci/.github/workflows/[email protected]
secrets:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
main-branch-name: main
number-of-agents: 3
init-commands: |
yarn nx-cloud start-ci-run --stop-agents-after="build" --agent-count=3
parallel-commands: |
yarn nx-cloud record -- yarn nx format:check
parallel-commands-on-agents: |
yarn nx lint harbor-master
yarn nx test harbor-master --ci --codeCoverage
yarn nx build harbor-master
artifacts-path: |
dist
coverage
package.json
artifacts-name: dist-and-coverage-artifacts
node-version: "20"
agents:
name: Nx Cloud - Agents
uses: nrwl/ci/.github/workflows/[email protected]
secrets:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
with:
number-of-agents: 3
node-version: "20"
release:
runs-on: ubuntu-latest
needs:
- main
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
- uses: actions/download-artifact@v3
with:
name: dist-and-coverage-artifacts
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: '20'
- run: yarn install --frozen-lockfile
- name: Release
run: |
npx semantic-release
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}