Skip to content

Commit 34cf9e0

Browse files
author
Robert Jackson
authored
Remove manual yarn installation
An update to the GH actions CI environment made `npm i -g yarn` error (because `yarn` is already installed and cannot be overwritten by the user process owner). This removes the manual installation as it is not needed any longer.
1 parent d1b9683 commit 34cf9e0

1 file changed

Lines changed: 0 additions & 8 deletions

File tree

.github/workflows/ci.yml

Lines changed: 0 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -19,8 +19,6 @@ jobs:
1919
- uses: actions/setup-node@v1
2020
with:
2121
node-version: 12.x
22-
- name: install yarn
23-
run: npm install -g yarn
2422
- name: install dependencies
2523
run: yarn install
2624
- name: lint:js
@@ -42,8 +40,6 @@ jobs:
4240
- uses: actions/setup-node@v1
4341
with:
4442
node-version: ${{ matrix.node-version }}
45-
- name: install yarn
46-
run: npm install -g yarn
4743
- name: install dependencies
4844
run: yarn install
4945
- name: node tests
@@ -62,8 +58,6 @@ jobs:
6258
- uses: actions/setup-node@v1
6359
with:
6460
node-version: 12.x
65-
- name: install yarn
66-
run: npm install -g yarn
6761
- name: install dependencies
6862
run: yarn install --ignore-lockfile
6963
- name: node tests
@@ -100,8 +94,6 @@ jobs:
10094
- uses: actions/setup-node@v1
10195
with:
10296
node-version: 12.x
103-
- name: install yarn
104-
run: npm install -g yarn
10597
- name: install dependencies
10698
run: yarn install
10799
- name: test

0 commit comments

Comments
 (0)