/
githubmirror
/
pm2
Обзор
Документация
Войти
/
githubmirror
/
pm2
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/node.js.yml
45 строк
1004 B
Unitech
Node 18.x
02 май 2026, 09:13
02 май 2026, 09:13
0887faf
Код
Авторство
О чём код?
name: Node.js CI on: [push, pull_request] jobs: test-node: runs-on: ubuntu-latest timeout-minutes: 30 strategy: matrix: node-version: [18, 20, 24] steps: - uses: actions/checkout@v4 - name: Run parallel tests in Docker (Node.js ${{ matrix.node-version }}) run: NODE_VERSION=${{ matrix.node-version }} MAX_JOBS=6 npm run test:parallel test-bun: runs-on: ubuntu-latest timeout-minutes: 30 steps: - uses: actions/checkout@v4 - name: Run parallel tests in Docker (Bun) run: RUNTIME=bun MAX_JOBS=6 npm run test:parallel test-windows: runs-on: windows-latest timeout-minutes: 30 strategy: matrix: node-version: [18, 20, latest] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: node-version: ${{ matrix.node-version }} - run: npm install - name: Run tests (Node.js ${{ matrix.node-version }}) shell: bash run: bash test/windows.sh