Merge branch 'main' into tyler-add-cf-and-qspectre-flags

This commit is contained in:
Alexandru Dima 2022-03-04 19:17:18 +01:00 коммит произвёл GitHub
Родитель 3ebcbed1b1 e43eefbce5
Коммит ca9a752d60
Не найден ключ, соответствующий данной подписи
Идентификатор ключа GPG: 4AEE18F83AFDEB23
1 изменённых файлов: 8 добавлений и 1 удалений

9
.github/workflows/ci.yml поставляемый
Просмотреть файл

@ -11,7 +11,14 @@ jobs:
- uses: actions/setup-node@v2
with:
node-version: 14
- run: npm ci
- run: |
# update node-gyp to latest for support in detecting VS 2022 toolchain
npm install -g node-gyp@latest
# Resolve to node-gyp.js
# Remove this once node-version >= 16.x,
# which ships with npm > 8.4.0 that has support for VS 2022 toolchain.
$env:npm_config_node_gyp=$(Join-Path $(Get-Command node-gyp.cmd).Path "..\node_modules\node-gyp\bin\node-gyp.js" -Resolve)
npm ci
- run: npm test
linux: