mirror of
https://github.com/matrix-org/matrix-spec
synced 2026-04-15 07:34:10 +02:00
Gets rid of warning in CI complaining about those actions using node 12. Signed-off-by: Kévin Commaille <zecakeh@tedomum.fr>
19 lines
408 B
YAML
19 lines
408 B
YAML
name: Spell Check
|
|
on:
|
|
push:
|
|
branches:
|
|
- main
|
|
pull_request:
|
|
|
|
jobs:
|
|
run:
|
|
name: Spell Check with Typos
|
|
runs-on: ubuntu-latest
|
|
steps:
|
|
- name: Checkout Actions Repository
|
|
uses: actions/checkout@v4
|
|
|
|
- name: Check spelling of proposals
|
|
uses: crate-ci/typos@4550e7d4371fcf55649adfcda9b77716658504b1
|
|
with:
|
|
config: ${{github.workspace}}/.github/_typos.toml |