There was an error while loading. Please reload this page.
1 parent ceb5e01 commit 1a78019Copy full SHA for 1a78019
1 file changed
.circleci/config.yml
@@ -2,9 +2,24 @@ version: 2
2
jobs:
3
build:
4
macos:
5
- xcode: '13.4.1'
+ xcode: '14.3.1'
6
+ resource_class: m4pro.medium
7
steps:
8
- checkout
9
+ - run:
10
+ name: Use Node.js 16
11
+ command: |
12
+ nvm install 16
13
+ nvm alias default 16
14
+ {
15
+ echo 'export NVM_DIR="$HOME/.nvm"'
16
+ echo '[ -s "$NVM_DIR/nvm.sh" ] && . "$NVM_DIR/nvm.sh"'
17
+ echo 'nvm use 16 >/dev/null'
18
+ } >> "$BASH_ENV"
19
+ nvm use 16
20
+ npm install --global yarn@1.22.19
21
+ node --version
22
+ yarn --version
23
- run: yarn
24
- run: mkdir -p ~/reports
25
- run: yarn lint
0 commit comments