Remove install pro in pipelines

This commit is contained in:
adrinr 2023-04-11 17:16:04 +01:00
parent fd538e0aad
commit 7d792e22bd
3 changed files with 65 additions and 79 deletions

View File

@ -38,8 +38,6 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 14.x
- name: Install Pro
run: yarn install:pro $BRANCH $BASE_BRANCH
- run: yarn - run: yarn
- run: yarn bootstrap - run: yarn bootstrap
- run: yarn build - run: yarn build
@ -52,8 +50,6 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 14.x
- name: Install Pro
run: yarn install:pro $BRANCH $BASE_BRANCH
- run: yarn - run: yarn
- run: yarn bootstrap - run: yarn bootstrap
- run: yarn test - run: yarn test
@ -71,8 +67,6 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 14.x
- name: Install Pro
run: yarn install:pro $BRANCH $BASE_BRANCH
- run: yarn - run: yarn
- run: yarn bootstrap - run: yarn bootstrap
- run: yarn test:pro - run: yarn test:pro
@ -85,8 +79,6 @@ jobs:
uses: actions/setup-node@v1 uses: actions/setup-node@v1
with: with:
node-version: 14.x node-version: 14.x
- name: Install Pro
run: yarn install:pro $BRANCH $BASE_BRANCH
- run: yarn && yarn bootstrap && yarn build - run: yarn && yarn bootstrap && yarn build
- run: | - run: |
cd qa-core cd qa-core

View File

@ -6,15 +6,15 @@ on:
branches: branches:
- develop - develop
paths: paths:
- '.aws/**' - ".aws/**"
- '.github/**' - ".github/**"
- 'charts/**' - "charts/**"
- 'packages/**' - "packages/**"
- 'scripts/**' - "scripts/**"
- 'package.json' - "package.json"
- 'yarn.lock' - "yarn.lock"
- 'package.json' - "package.json"
- 'yarn.lock' - "yarn.lock"
workflow_dispatch: workflow_dispatch:
env: env:
@ -40,9 +40,6 @@ jobs:
with: with:
node-version: 14.x node-version: 14.x
- name: Install Pro
run: yarn install:pro develop
- run: yarn - run: yarn
- run: yarn bootstrap - run: yarn bootstrap
- run: yarn build - run: yarn build

View File

@ -6,15 +6,15 @@ on:
branches: branches:
- master - master
paths: paths:
- '.aws/**' - ".aws/**"
- '.github/**' - ".github/**"
- 'charts/**' - "charts/**"
- 'packages/**' - "packages/**"
- 'scripts/**' - "scripts/**"
- 'package.json' - "package.json"
- 'yarn.lock' - "yarn.lock"
- 'package.json' - "package.json"
- 'yarn.lock' - "yarn.lock"
workflow_dispatch: workflow_dispatch:
inputs: inputs:
versioning: versioning:
@ -48,9 +48,6 @@ jobs:
with: with:
node-version: 14.x node-version: 14.x
- name: Install Pro
run: yarn install:pro master
- run: yarn - run: yarn
- run: yarn bootstrap - run: yarn bootstrap
- run: yarn lint - run: yarn lint
@ -68,7 +65,7 @@ jobs:
echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} >> .npmrc echo //registry.npmjs.org/:_authToken=${NPM_TOKEN} >> .npmrc
yarn release yarn release
- name: 'Get Previous tag' - name: "Get Previous tag"
id: previoustag id: previoustag
uses: "WyriHaximus/github-action-get-previous-tag@v1" uses: "WyriHaximus/github-action-get-previous-tag@v1"