/
githubmirror
/
husky
Обзор
Документация
Войти
/
githubmirror
/
husky
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/node.js.yml
27 строк
652 B
Mike McCready
ci: remove Node.js 18, add 24 to Node.js CI workflow (#1604)
11 окт 2025, 02:30
Не верифицирован
11 окт 2025, 02:30
ec10d87
Код
Авторство
О чём код?
# For more information see: https://help.github.com/actions/language-and-framework-guides/using-nodejs-with-github-actions name: Node.js CI on: [push] permissions: contents: read # to fetch code (actions/checkout) jobs: test: strategy: matrix: node-version: - 20 - 22 - 24 os: [ubuntu-latest, macOS-latest, windows-latest] runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm --version - run: npm ci --ignore-scripts - run: ./test.sh