diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 805f231..9f15f12 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -6,9 +6,10 @@ on: jobs: lint: - if: github.event_name != 'pull_request' || - github.event.pull_request.head.repo.full_name != - github.event.pull_request.base.repo.full_name + if: + github.event_name != 'pull_request' || + github.event.pull_request.head.repo.full_name != + github.event.pull_request.base.repo.full_name runs-on: ubuntu-latest steps: - uses: actions/checkout@v3 @@ -27,9 +28,10 @@ jobs: run: npm run spellcheck:ci test: - if: github.event_name != 'pull_request' || - github.event.pull_request.head.repo.full_name != - github.event.pull_request.base.repo.full_name + if: + github.event_name != 'pull_request' || + github.event.pull_request.head.repo.full_name != + github.event.pull_request.base.repo.full_name runs-on: ${{ matrix.os }} steps: - uses: actions/checkout@v3