mirror of
https://github.com/woocommerce/woocommerce-paypal-payments.git
synced 2025-08-30 05:00:51 +08:00
20 lines
436 B
YAML
20 lines
436 B
YAML
name: Spell Check
|
|
|
|
on:
|
|
# Run on all pull requests
|
|
pull_request:
|
|
|
|
jobs:
|
|
typos:
|
|
runs-on: ubuntu-latest
|
|
name: Check for typos
|
|
steps:
|
|
- name: Checkout
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Check spelling
|
|
id: spelling
|
|
uses: crate-ci/typos@7bc041cbb7ca9167c9e0e4ccbb26f48eb0f9d4e0 # v1.30.2
|
|
with:
|
|
# Path to config file
|
|
config: .github/workflows-config/typos.toml
|