mirror of
https://github.com/lensapp/lens.git
synced 2025-05-20 05:10:56 +00:00
attempt setting up and using yarn
This commit is contained in:
parent
68cd9aa259
commit
aff1b20d12
25
.github/workflows/build-for-windows.yml
vendored
25
.github/workflows/build-for-windows.yml
vendored
@ -24,13 +24,22 @@ jobs:
|
|||||||
steps:
|
steps:
|
||||||
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
# Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
|
||||||
- uses: actions/checkout@v3
|
- uses: actions/checkout@v3
|
||||||
|
- uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 16
|
||||||
|
|
||||||
# Runs a single command using the runners shell
|
# use npm to set up yarn
|
||||||
- name: Run a one-line script
|
- name: Set up yarn cli
|
||||||
run: echo Hello, world!
|
|
||||||
|
|
||||||
# Runs a set of commands using the runners shell
|
|
||||||
- name: Run a multi-line script
|
|
||||||
run: |
|
run: |
|
||||||
echo Add other actions to build,
|
npm install --global yarn
|
||||||
echo test, and deploy your project.
|
yarn --version
|
||||||
|
|
||||||
|
# Sets up the node_modules folder with the Windows version of the dependencies
|
||||||
|
- name: Yarn install
|
||||||
|
run: |
|
||||||
|
yarn install --frozen-lockfile --network-timeout=100000
|
||||||
|
yarn check --verify-tree --integrity
|
||||||
|
|
||||||
|
# Downloads kubernetes dependencies
|
||||||
|
- name: Download client binaries
|
||||||
|
run: yarn download:binaries
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user