Skip to content

Commit c093991

Browse files
add vale
1 parent bd91815 commit c093991

File tree

1 file changed

+9
-6
lines changed

1 file changed

+9
-6
lines changed

.github/workflows/spell-check.yaml

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -65,10 +65,10 @@ jobs:
6565
with:
6666
python-version: '3.x'
6767

68-
- name: Install proselint on node
69-
run: npm install -g proselint
70-
- name: Install proselint on python
71-
run: pip install proselint
68+
- name: Install proselint
69+
run: |
70+
npm install -g proselint
71+
pip install proselint
7272
7373
- name: Run proselint on Markdown files
7474
run: npx proselint *.md
@@ -79,8 +79,11 @@ jobs:
7979
- name: Checkout Repository
8080
uses: actions/checkout@v3
8181

82-
- name: Install vale
83-
run: snap install vale
82+
- name: Install snapd and Vale
83+
run: |
84+
sudo apt-get update
85+
sudo apt-get install -y snapd
86+
sudo snap install vale
8487
8588
- name: Run vale on Markdown files
8689
run: vale *.md

0 commit comments

Comments
 (0)