1
0
mirror of https://github.com/lensapp/lens.git synced 2025-05-20 05:10:56 +00:00

fix github workflows

Signed-off-by: Jari Kolehmainen <jari.kolehmainen@gmail.com>
This commit is contained in:
Jari Kolehmainen 2023-01-11 15:30:59 +02:00
parent b8befde2f4
commit 23e2aa7a61
4 changed files with 7 additions and 4 deletions

View File

@ -19,7 +19,8 @@ jobs:
fetch-depth: 0
- name: Install dependencies
run: |
yarn ci
yarn install --frozen-lockfile
yarn lerna bootstrap
- name: Bump version to first alpha of next minor version
run: |
yarn bump-version preminor

View File

@ -27,7 +27,8 @@ jobs:
- name: Generate NPM packages
run: |
yarn ci
yarn install --frozen-lockfile
yarn lerna bootstrap
yarn run build
- name: Publish NPM package

View File

@ -32,7 +32,8 @@ jobs:
- name: Generate NPM packages
run: |
yarn ci
yarn install --frozen-lockfile
yarn lerna bootstrap
yarn run build
- name: Publish NPM packages

View File

@ -51,7 +51,7 @@ jobs:
timeout_minutes: 10
max_attempts: 3
retry_on: error
command: yarn ci
command: yarn install --frozen-lockfile && yarn lerna bootstrap
- run: make test
name: Run tests