1
mirror of https://github.com/jakejarvis/hugo-extended.git synced 2025-09-15 22:35:31 -04:00

run tests on Node 16

This commit is contained in:
2021-05-24 12:23:39 -04:00
parent 457359659c
commit a0aaabb804
5 changed files with 524 additions and 14377 deletions

View File

@@ -9,7 +9,6 @@ const baseUrl = `https://github.com/gohugoio/hugo/releases/download/v${version}/
// Hugo Extended supports: macOS x64, macOS ARM64, Linux x64, Windows x64.
// all other combos fall back to vanilla Hugo.
/* eslint-disable indent, operator-linebreak, unicorn/no-nested-ternary */
module.exports =
process.platform === 'darwin' && process.arch === 'x64'
? `${baseUrl}hugo_extended_${version}_macOS-64bit.tar.gz` :
@@ -49,4 +48,3 @@ module.exports =
? `${baseUrl}hugo_${version}_OpenBSD-ARM64.tar.gz` :
null;
/* eslint-enable indent, operator-linebreak, unicorn/no-nested-ternary */