/
githubmirror
/
lodash
Обзор
Документация
Войти
/
githubmirror
/
lodash
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/ci-node.yml
61 строка
1 KB
Jon Church
chore(ci): sha pin the actions (#6209)
08 май 2026, 04:37
Не верифицирован
08 май 2026, 04:37
a023532
Код
Авторство
О чём код?
name: CI Node.js on: push: branches: [ main ] pull_request: jobs: test: name: Node.js ${{ matrix.node-version }} on ${{ matrix.os }} runs-on: ${{ matrix.os }} strategy: fail-fast: false matrix: os: [ubuntu-latest] node-version: [ '4', '5', '6', '7', '8', '9', '10', '11', '12', '13', '14', '15', '16', '17', '18', '19', '20', '21', '22', '23', '24', '25' ] steps: - name: Checkout code uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 - name: Setup Node.js ${{ matrix.node-version }} uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 with: node-version: ${{ matrix.node-version }} cache: 'npm' # This is due to bugs in npm 3’s handling of newer package formats. - name: Use npm@3.10.10 for Node@5 if: matrix.node-version == '5' run: npm install -g npm@3.10.10 - name: Install dependencies run: npm install - name: Run Validate run: npm run validate