Skip to content

Commit

Permalink
ci(fast): use windows-latest (#2755)
Browse files Browse the repository at this point in the history
  • Loading branch information
malept authored Mar 5, 2022
1 parent 204ec25 commit cb5cdd5
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@ jobs:
needs: dependabolt
strategy:
matrix:
os: [windows-2019, macOS-latest, ubuntu-latest]
os: [windows-latest, macOS-latest, ubuntu-latest]
steps:
- name: Fix git checkout line endings
run: git config --global core.autocrlf input
Expand All @@ -42,6 +42,13 @@ jobs:
with:
node-version: 12.x
cache: yarn
- name: Install latest NPM on Windows
if: matrix.os == 'windows-latest'
# See https://github.com/actions/virtual-environments/issues/4856#issuecomment-1043256330
# and https://github.com/actions/setup-node/issues/411#issuecomment-1051084491
run: |
npm install -g [email protected]
npm install -g npm@latest
- name: Install bolt
shell: bash
run: |
Expand Down

0 comments on commit cb5cdd5

Please sign in to comment.