/
githubmirror
/
pdf.js
Обзор
Документация
Войти
/
githubmirror
/
pdf.js
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/lint.yml
36 строк
813 B
dependabot[bot]
Bump actions/checkout from 7.0.0 to 7.0.1
28 июл 2026, 15:16
Не верифицирован
28 июл 2026, 15:16
4b924df
Код
Авторство
О чём код?
name: Lint on: [push, pull_request] permissions: contents: read jobs: lint: name: Lint runs-on: ubuntu-latest strategy: fail-fast: false matrix: node-version: [lts/*] steps: - name: Checkout repository uses: actions/checkout@3d3c42e5aac5ba805825da76410c181273ba90b1 # v7.0.1 with: fetch-depth: 0 persist-credentials: false - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@820762786026740c76f36085b0efc47a31fe5020 # v7.0.0 with: node-version: ${{ matrix.node-version }} cache: 'npm' - name: Install dependencies run: npm ci - name: Run lint run: npx gulp lint - name: Run lint-mozcentral run: npx gulp lint-mozcentral