-
Notifications
You must be signed in to change notification settings - Fork 7
47 lines (37 loc) · 932 Bytes
/
CI.yml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
name: CI
on:
workflow_dispatch:
push:
branches: ["main"]
pull_request:
branches: ["main"]
jobs:
compile:
runs-on: windows-latest
steps:
- uses: actions/checkout@v3
- name: Install Dependencies
run: |
npm install typescript -g
npm install
- name: Compile 💻
run: |
tsc --noEmit
npm run build
json-validation:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Validate JSON ✔️
uses: limitusus/json-syntax-check@v1
with:
pattern: "\\.json$"
spell-checking:
# The type of runner that the job will run on
runs-on: ubuntu-latest
# Steps represent a sequence of tasks that will be executed as part of the job
steps:
# Spellcheck
- uses: actions/checkout@v2
- name: Spellcheck 👀
uses: igsekor/pyspelling-any@v0.0.2