From 2b1b72f4e719b0fc711daa58229f5d34adc0f447 Mon Sep 17 00:00:00 2001 From: "Lim, Wei Shan" Date: Tue, 8 Oct 2024 14:15:43 +0800 Subject: [PATCH] GitHub Actions workflow to check typos for PR --- .github/workflows/lint.yaml | 15 +++++++++++++++ 1 file changed, 15 insertions(+) create mode 100644 .github/workflows/lint.yaml diff --git a/.github/workflows/lint.yaml b/.github/workflows/lint.yaml new file mode 100644 index 0000000..56a1c46 --- /dev/null +++ b/.github/workflows/lint.yaml @@ -0,0 +1,15 @@ +name: typos + +on: [pull_request] + +jobs: + check-typo: + name: Spell Check with Typos + runs-on: ubuntu-latest + + steps: + - name: Checkout Repository + uses: actions/checkout@v4 + + - name: Check for Typos + uses: crate-ci/typos@v1.15.5 \ No newline at end of file