-
Notifications
You must be signed in to change notification settings - Fork 33
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: bump electronjs/node to 2.1.0 (main) (#170)
* chore: bump electronjs/node in .circleci/config.yml to 2.1.0 * build: add install-rosetta step --------- Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: George Xu <[email protected]>
- Loading branch information
1 parent
82369dc
commit 83f6f8e
Showing
1 changed file
with
13 additions
and
7 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -2,7 +2,7 @@ version: 2.1 | |
|
||
orbs: | ||
cfa: continuousauth/[email protected] | ||
node: electronjs/node@1.4.1 | ||
node: electronjs/node@2.1.0 | ||
|
||
workflows: | ||
test_and_release: | ||
|
@@ -12,6 +12,13 @@ workflows: | |
executor: node/macos | ||
name: test-mac-<< matrix.node-version >> | ||
override-ci-command: yarn install --frozen-lockfile --ignore-engines | ||
pre-steps: | ||
- when: | ||
condition: | ||
and: | ||
- equal: [ '14.16', << matrix.node-version >> ] | ||
steps: | ||
- node/install-rosetta | ||
test-steps: | ||
- run: yarn lint | ||
- run: yarn test | ||
|
@@ -20,12 +27,11 @@ workflows: | |
alias: test-mac | ||
parameters: | ||
node-version: | ||
- 20.5.0 | ||
- 18.17.0 | ||
- 16.20.1 | ||
- 14.21.3 | ||
# - 12.22.12 | ||
# - 10.24.1 | ||
- '20.9' | ||
- '18.17' | ||
- '16.20' | ||
# Stay below 14.17.0 or nvm tries to download arm64 artifacts which don't exist | ||
- '14.16' | ||
- cfa/release: | ||
requires: | ||
- test-mac | ||
|