Skip to content

feat: add pollingOptions to plugin options #9

feat: add pollingOptions to plugin options

feat: add pollingOptions to plugin options #9

Workflow file for this run

name: CI workflow
on:
pull_request:
branches:
- main
push:
branches:
- main
- renovate/*
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- run: corepack enable
- uses: actions/setup-node@v4
with:
node-version: lts/*
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile
- name: 🔠 Lint project
run: pnpm lint
test:
runs-on: ${{ matrix.os }}
strategy:
matrix:
node: [lts/*]
os: [ubuntu-latest, windows-latest, macos-latest]
steps:
- uses: actions/checkout@v4
- run: corepack enable
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
- name: 📦 Install dependencies
run: pnpm install --frozen-lockfile
- name: 🛠 Build project
run: pnpm build
- name: 🧪 Test project
run: pnpm test
- name: 🟩 Coverage
uses: codecov/codecov-action@v4