00:21
<shu>
i thought "Draft" meant something like the author was still modifying it, and it wasn't ready for review
00:21
<shu>
and something like "do not merge" is, its contents are ready to go, but it's gated on other things
01:31
<Domenic>
Yeah I think I personally prefer that taxonomy
05:56
<sideshowbarker>
for using Node.js in Github Actions, rather than needing specify any particular Node.js version, is there some way I can specify “just use the latest available Node.js version”?
14:21
<DerekNonGeneric>
sideshowbarker: looks like it uses to nvm (bash version) syntax https://github.com/actions/setup-node#supported-version-syntax
14:22
sideshowbarker
looks
14:22
<sideshowbarker>
so is there an nvm syntax for “latest”?
14:23
<sideshowbarker>
I know there’s lts/*, but that’s not latest-latest
14:24
<DerekNonGeneric>
might just be node according to the docs https://github.com/nvm-sh/nvm#usage
14:24
<DerekNonGeneric>

"node" is an alias for the latest version

14:26
<DerekNonGeneric>
(have not actually tested this myself)
14:28
<sideshowbarker>
oh cool — will try that
14:31
<sideshowbarker>
dang, didn’t work
14:31
<sideshowbarker>

https://github.com/w3c/mdn-spec-links/actions/runs/993930895

Unable to find Node version 'node' for platform linux and architecture x64.

14:32
<sideshowbarker>
no big deal, though — for the specific context, any version >=15 works fine
14:33
<sideshowbarker>
I just need support for .replaceAll(), but the default node in Ubuntu latest is too old to have that
14:33
<sideshowbarker>
so I guess I’ll just use 16
14:35
<DerekNonGeneric>
yeah, the latest-even number versions will last a while
14:35
<sideshowbarker>
yeah