Skip to content

fix(ci): only run CI for PRs #534

fix(ci): only run CI for PRs

fix(ci): only run CI for PRs #534

Workflow file for this run

---
name: "CI"
on:
pull_request:
types:
- opened
- synchronize
paths-ignore:
- '**/README.md'
jobs:
pre:
uses: ./.github/workflows/cache.yml
lint:
uses: ./.github/workflows/lint.yml
needs: [pre]
test:
uses: ./.github/workflows/test.yml
needs: [pre, lint]