27 lines
374 B
YAML
27 lines
374 B
YAML
name: Continuous Integration
|
|
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
- master
|
|
- next
|
|
- 'v*'
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '*.md'
|
|
pull_request:
|
|
paths-ignore:
|
|
- 'docs/**'
|
|
- '*.md'
|
|
|
|
env:
|
|
TZ: 'UTC'
|
|
|
|
jobs:
|
|
test:
|
|
uses: fastify/workflows/.github/workflows/plugins-ci.yml@v3
|
|
with:
|
|
lint: true
|
|
license-check: true
|