From a891d62e18f56af13f89c93751e852cff1aeb8b8 Mon Sep 17 00:00:00 2001 From: Tom Arra Date: Sat, 7 May 2022 16:42:47 -0500 Subject: [PATCH] actually checkout the repo --- .github/workflows/spell_check.yaml | 3 +++ .vscode/cspell.json | 8 +++++--- 2 files changed, 8 insertions(+), 3 deletions(-) diff --git a/.github/workflows/spell_check.yaml b/.github/workflows/spell_check.yaml index 9a713f3d..cfed96da 100644 --- a/.github/workflows/spell_check.yaml +++ b/.github/workflows/spell_check.yaml @@ -11,6 +11,9 @@ jobs: name: Continuous Integration runs-on: ubuntu-latest steps: + - name: Checkout + uses: actions/checkout@v2 + - name: Check spelling uses: zwaldowski/cspell-action@v1 with: diff --git a/.vscode/cspell.json b/.vscode/cspell.json index c8fa7df7..eab91ad4 100644 --- a/.vscode/cspell.json +++ b/.vscode/cspell.json @@ -3,9 +3,11 @@ "enabled": true, "language": "en", "words": [ - "leaderboard" + "firestore", + "leaderboard", + "unawaited" ], "ignorePaths": [ - ".github/workflows/**" + ".github/workflows/**" ] - } \ No newline at end of file +}