Skip to content
This repository was archived by the owner on Apr 21, 2022. It is now read-only.

Commit 9215c56

Browse files
authored
chore: fix build (#428)
* chore: use most recent node orb * chore: try disabling yarn install * chore: try forcing yarn version 1.22.15 * chore: try to install yarn directly * chore: remove node 10
1 parent 8a90ff2 commit 9215c56

1 file changed

Lines changed: 6 additions & 3 deletions

File tree

.circleci/config.yml

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
---
22
version: 2.1
33
orbs:
4-
node: circleci/node@4.2.0
4+
node: circleci/node@4.7.0
55
jobs:
66
test-node: &test
77
parameters:
@@ -23,8 +23,11 @@ jobs:
2323
echo "--install.prefer-offline" >> .yarnrc
2424
echo "yarn-offline-mirror $(pwd)/.yarn/offline-mirror" >> .yarnrc
2525
- node/install: &install_node
26-
install-yarn: true
2726
node-version: << parameters.node-version >>
27+
- run:
28+
name: Yarn Install
29+
command: |
30+
npm install yarn -g
2831
- run: &create_cache_key_file
2932
name: "Create Cache Key File"
3033
command: |
@@ -82,9 +85,9 @@ workflows:
8285
matrix:
8386
parameters:
8487
node-version:
85-
- "10"
8688
- "12"
8789
- "14"
90+
- "16"
8891
- release:
8992
node-version: "14"
9093
context: org-global

0 commit comments

Comments
 (0)