/
githubmirror
/
lodash
Обзор
Документация
Войти
/
githubmirror
/
lodash
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
main
.github/workflows/ci-docs.yml
32 строки
728 B
Jon Church
chore(ci): sha pin the actions (#6209)
08 май 2026, 04:37
Не верифицирован
08 май 2026, 04:37
a023532
Код
Авторство
О чём код?
name: CI Docs on: push: branches: [ main ] pull_request: # Run on every PR, regardless of branch branches: [ '*' ] jobs: test-docs: name: Docs Test runs-on: ubuntu-latest steps: - name: Checkout code uses: actions/checkout@34e114876b0b11c390a56381ad16ebd13914f8d5 # v4.3.1 - name: Setup Node.js (latest) uses: actions/setup-node@49933ea5288caeca8642d1e84afbd3f7d6820020 # v4.4.0 with: node-version: 'node' # Use 'node' for the latest version cache: 'npm' - name: Install dependencies run: npm install - name: Test documentation run: | npm run doc:fp npm run doc:site npm run doc