Skip to content

Bump swiper from 11.2.8 to 12.1.2 #167

Bump swiper from 11.2.8 to 12.1.2

Bump swiper from 11.2.8 to 12.1.2 #167

Workflow file for this run

name: Spellcheck Task
on: [ pull_request ]
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
collect_changes:
name: Collect changed files
outputs:
any_changed: ${{ steps.files.outputs.any_changed }}
changed_files: ${{ steps.files.outputs.all_changed_files }}
runs-on: ubuntu-latest
steps:
- name: Checkout codebase
uses: actions/checkout@v4
- name: Get Changed Files
id: files
uses: tj-actions/changed-files@v46
with:
files: |
./public/*.html
./public/*.txt
./public/*.json
./src/**/*.html
./src/**/*.json
./src/**/*.ts
./src/**/*.tsx
spellcheck:
name: Run spellchecker
needs: collect_changes
if: needs.collect_changes.outputs.any_changed == 'true'
uses: ./.github/workflows/spellchecker.yaml
with:
files: ${{ needs.collect_changes.outputs.changed_files }}