/
githubmirror
/
hexo
Обзор
Документация
Войти
/
githubmirror
/
hexo
Код
Запросы
0
Пакеты
0
Релизы
0
Аналитика
Безопасность
master
.github/workflows/tester.yml
68 строк
2 KB
dependabot[bot]
chore(deps): bump actions/checkout from 6 to 7 (#5786)
25 июн 2026, 00:27
Не верифицирован
25 июн 2026, 00:27
2d30ce1
Код
Авторство
О чём код?
name: Tester on: push: branches: - "master" paths: - "lib/**" - "test/**" - "package.json" - "tsconfig.json" - ".github/workflows/tester.yml" pull_request: paths: - "lib/**" - "test/**" - "package.json" - "tsconfig.json" - ".github/workflows/tester.yml" permissions: contents: read jobs: tester: runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest, windows-latest, macos-latest] node-version: ["20", "22", "24"] fail-fast: false steps: - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies run: npm install - name: Test run: npm test -- --no-parallel env: CI: true coverage: permissions: checks: write # for coverallsapp/github-action to create new checks contents: read # for actions/checkout to fetch code runs-on: ${{ matrix.os }} strategy: matrix: os: [ubuntu-latest] node-version: ["22"] steps: - uses: actions/checkout@v7 - name: Use Node.js ${{ matrix.node-version }} uses: actions/setup-node@v6 with: node-version: ${{ matrix.node-version }} - name: Install Dependencies run: npm install - name: Coverage run: npm run test-cov env: CI: true - name: Coveralls uses: coverallsapp/github-action@master with: github-token: ${{ secrets.github_token }}