From 11ca359f3ef722f7489ac245bfbe1bf0d37f0d32 Mon Sep 17 00:00:00 2001 From: Richard Fox Date: Wed, 25 Oct 2023 18:19:51 -0700 Subject: [PATCH] feat(ci): run our locale-checker-action --- .github/workflows/ci.yml | 20 ++++++++++++++++++++ 1 file changed, 20 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..af529fd --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,20 @@ +name: Run CI + +on: + push: + branches: + - "main" + paths-ignore: + - '**/*.md' + pull_request: + branches: + - "main" + paths-ignore: + - '**/*.md' + +jobs: + validate: + runs-on: ubuntu-latest + steps: + - name: Validate Locale + uses: Yellow-Dog-Man/locale-checker-action@v1.0 \ No newline at end of file