Skip to content

Commit eabc62a

Browse files
Use cspell
1 parent 576005e commit eabc62a

2 files changed

Lines changed: 16 additions & 1 deletion

File tree

.github/workflows/ci.yml

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -59,9 +59,24 @@
5959
"release-readiness": {
6060
"runs-on": "ubuntu-latest",
6161
"steps": [
62+
{
63+
"name": "Checkout",
64+
"uses": "actions/checkout@v1"
65+
},
66+
{
67+
"name": "Setup node",
68+
"uses": "actions/setup-node@v1",
69+
"with": {
70+
"node-version": "13.x"
71+
}
72+
},
73+
{
74+
"name": "Install cspell",
75+
"run": "npm i -g cspell"
76+
},
6277
{
6378
"name": "Check spelling",
64-
"uses": "sbates130272/[email protected]"
79+
"run": "cspell 'src/**/*.ts'"
6580
}
6681
]
6782
}

.wordlist.txt

Whitespace-only changes.

0 commit comments

Comments
 (0)