Closed
Description
Bug Report
In the GitHub Actions CI matrix, the Node versions *
and lts/*
both resolve to the same version (currently 18.12.1
), making these two jobs duplicates.
🔎 Search Terms
CI, continuous integration, Node version
🕗 Version & Regression Information
N/A
⏯ Playground Link
https://github.com/microsoft/TypeScript/actions/runs/3721283259/jobs/6311330943#step:3:9
https://github.com/microsoft/TypeScript/actions/runs/3721283259/jobs/6311330986#step:3:10
💻 Code
https://github.com/microsoft/TypeScript/blob/main/.github/workflows/ci.yml#L21-L22
🙁 Actual behavior
The Node version in the two CI jobs are the same, making them duplicates.
🙂 Expected behavior
The Node version "*"
in the matrix should be changed to "19.x"
so that tests run using the latest Node version.