File tree Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Expand file tree Collapse file tree 2 files changed +17
-2
lines changed Original file line number Diff line number Diff line change 23
23
run : npm install
24
24
25
25
- name : Run eslint
26
- run : npm run lint
26
+ run : npm run lint
27
+ build :
28
+ name : Build
29
+ runs-on : ubuntu-latest
30
+ steps :
31
+ - uses : actions/checkout@v3
32
+ - uses : actions/setup-node@v3
33
+ with :
34
+ node-version : 18.x
35
+
36
+ - name : Install Dependencies
37
+ run : npm install
38
+
39
+ - name : Build type declaration files
40
+ run : npm run build
Original file line number Diff line number Diff line change 17
17
"lint" : " npx eslint ./packages/**/*.js" ,
18
18
"lint:fix" : " npx eslint ./packages/**/*.js --fix" ,
19
19
"lint:fix-dry" : " npx eslint ./packages/**/*.js --fix-dry-run" ,
20
- "release" : " npm run build -w @bluecadet/launchpad && changeset publish"
20
+ "build" : " npm run build -w @bluecadet/launchpad" ,
21
+ "release" : " npm run build && changeset publish"
21
22
},
22
23
"repository" : {
23
24
"type" : " git" ,
You can’t perform that action at this time.
0 commit comments