-
-
Notifications
You must be signed in to change notification settings - Fork 525
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.3.0 (main) (#3596)
Co-authored-by: electron-roller[bot] <84116207+electron-roller[bot]@users.noreply.github.com> Co-authored-by: Erik Moura <[email protected]> Co-authored-by: David Sanders <[email protected]> Co-authored-by: Erick Zhao <[email protected]>
- Loading branch information
1 parent
3c2a19b
commit 321c72d
Showing
1 changed file
with
14 additions
and
2 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 |
---|---|---|
@@ -1,14 +1,14 @@ | ||
version: 2.1 | ||
|
||
orbs: | ||
node: electronjs/node@2.2.1 | ||
node: electronjs/node@2.3.0 | ||
|
||
commands: | ||
install: | ||
steps: | ||
- run: git config --global core.autocrlf input | ||
- node/install: | ||
node-version: '18.15.0' | ||
node-version: '18.20.3' | ||
- checkout | ||
run-lint-and-build: | ||
steps: | ||
|
@@ -67,6 +67,17 @@ jobs: | |
executor: << parameters.executor >> | ||
steps: | ||
- install | ||
- when: | ||
condition: | ||
equal: [node/windows, << parameters.executor >>] | ||
steps: | ||
- run: | ||
name: Windows Setup | ||
shell: bash | ||
command: | | ||
pip install setuptools | ||
cd 'C:\Program Files\nodejs\node_modules\npm\node_modules\@npmcli\run-script' | ||
npm install [email protected] | ||
- when: | ||
condition: | ||
equal: [node/linux, << parameters.executor >>] | ||
|
@@ -108,6 +119,7 @@ jobs: | |
name: Windows Setup | ||
shell: bash | ||
command: | | ||
pip install setuptools | ||
choco install --no-progress -y wixtoolset --version=3.14.0 | ||
echo 'export PATH=$PATH:"/C/Program Files (x86)/WiX Toolset v3.14/bin"' >> "$BASH_ENV" | ||
cd 'C:\Program Files\nodejs\node_modules\npm\node_modules\@npmcli\run-script' | ||
|