Skip to content

Commit 28e0c79

Browse files
authored
Create ci.yml
1 parent 6b177e0 commit 28e0c79

File tree

1 file changed

+24
-0
lines changed

1 file changed

+24
-0
lines changed

.github/workflows/ci.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
name: Check Spelling
2+
on:
3+
push:
4+
branches:
5+
- 'gh-pages'
6+
pull_request:
7+
branches:
8+
- '**'
9+
workflow_dispatch:
10+
jobs:
11+
test:
12+
runs-on: ubuntu-latest
13+
strategy:
14+
matrix:
15+
node-version: [12.x]
16+
name: ${{ matrix.name }}
17+
steps:
18+
- uses: actions/checkout@v2
19+
- name: Use Node.js ${{ matrix.node-version }}
20+
uses: actions/setup-node@v1
21+
with:
22+
node-version: ${{ matrix.node-version }}
23+
- name: Check Spelling
24+
run: npm run spelltest

0 commit comments

Comments
 (0)