Skip to content

Commit

Permalink
ci: use yarn in workflows (#1570)
Browse files Browse the repository at this point in the history
  • Loading branch information
dsanders11 committed Sep 27, 2023
1 parent 05f9cb7 commit 2962aac
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/canary.yml
Original file line number Diff line number Diff line change
Expand Up @@ -24,13 +24,13 @@ jobs:
- name: Replace electron with electron-nightly
run: |
cd electron-quick-start
npm uninstall --save-dev electron
npm install --save-dev electron-nightly@latest
yarn remove electron
yarn add --dev electron-nightly@latest
shell: bash
- name: Install Electron Packager
run: |
cd electron-quick-start
npm install --save-dev electron-packager@electron/electron-packager
yarn add --dev electron-packager@electron/electron-packager
shell: bash
- name: Package
run: |
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,8 +21,8 @@ jobs:
- uses: actions/setup-node@5e21ff4d9bc1a8cf6de233a3057d20ec6b3fb69d # tag: v3.8.1
with:
node-version: lts/*
- run: npm install --engine-strict --no-lockfile
- run: npm run docs:build
- run: yarn install --frozen-lockfile
- run: yarn run docs:build
- uses: dsanders11/github-action-gh-pages@6837fa66857ff3234e3ea5bcf709c86767ae3ce1
with:
defaultBranch: main
Expand Down

0 comments on commit 2962aac

Please sign in to comment.