[READ-ONLY] Mirror of https://github.com/vitest-dev/vitest. Next generation testing framework powered by Vite. vitest.dev
test testing-tools vite
12

Configure Feed

Select the types of activity you want to include in your feed.

ci: lock node version for worker tests (#6001)

authored by

Ari Perkkiö and committed by
GitHub
(Jun 30, 2024, 1:59 PM +0200) 910a04b6 d7f23d08

+4 -3
+4 -3
.github/workflows/ci.yml
··· 40 40 strategy: 41 41 matrix: 42 42 os: [ubuntu-latest] 43 - node_version: [18, 20] 43 + # Reset back to 20 after https://github.com/nodejs/node/issues/53648 44 + node_version: [18, 20.14] 44 45 # node_version: [18, 20, 22] 22 when LTS is close enough 45 46 include: 46 47 - os: macos-14 47 - node_version: 20 48 + node_version: 20.14 48 49 - os: windows-latest 49 - node_version: 20 50 + node_version: 20.14 50 51 fail-fast: false 51 52 52 53 steps: