Skip to content

Commit 3ac4b60

Browse files
committed
minor refactor
Signed-off-by: Qingpeng Li <qingpeng9802@gmail.com>
1 parent f82a842 commit 3ac4b60

File tree

5 files changed

+13
-65
lines changed

5 files changed

+13
-65
lines changed

.github/workflows/build.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,14 @@
11
name: Build
22

3+
# Controls when the workflow will run
34
on:
45
push:
56
branches:
67
- master
78

89
pull_request:
910

11+
# Allows you to run this workflow manually from the Actions tab
1012
workflow_dispatch:
1113
inputs:
1214
tags:
@@ -25,6 +27,15 @@ jobs:
2527
- name: Install dependencies
2628
run: npm ci
2729

30+
- name: tsc compile
31+
run: npm run tscc
32+
33+
- name: tsc compile with declarationMap
34+
run: npm run tsccd
35+
36+
- name: Code Linting
37+
run: npm run lint
38+
2839
- name: Build Grammar from yaml to json
2940
run: npm run bg
3041

.github/workflows/lint.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/tsc_compile.yml

Lines changed: 0 additions & 32 deletions
This file was deleted.
File renamed without changes.

package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -50,8 +50,8 @@
5050
],
5151
"configuration": "./language-configuration.json",
5252
"icon": {
53-
"light": "./icons/commonlisp_file_icon.svg",
54-
"dark": "./icons/commonlisp_file_icon.svg"
53+
"light": "./images/commonlisp_file_icon.svg",
54+
"dark": "./images/commonlisp_file_icon.svg"
5555
}
5656
},
5757
{

0 commit comments

Comments
 (0)