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 +}