Commit 361fe17 1 parent c22be55 commit 361fe17 Copy full SHA for 361fe17
File tree 3 files changed +8
-8
lines changed
3 files changed +8
-8
lines changed Original file line number Diff line number Diff line change 21
21
- uses : actions/setup-node@v2
22
22
with :
23
23
node-version : ' 12'
24
- cache : ' yarn '
25
- - run : yarn install
26
- - run : yarn docs
24
+ cache : ' npm '
25
+ - run : npm install
26
+ - run : npm run docs
27
27
28
28
- run : touch docs/.nojekyll
29
29
- name : Deploy docs 🚀
Original file line number Diff line number Diff line change 18
18
with :
19
19
node-version : ${{ matrix.nodejs }}
20
20
21
- - run : yarn install
22
- - run : yarn test
23
- - run : yarn lint
24
- - run : yarn build-all
21
+ - run : npm install
22
+ - run : npm run test
23
+ - run : npm run lint
24
+ - run : npm run build-all
Original file line number Diff line number Diff line change 25
25
"ts-node" : " ts-node" ,
26
26
"docs" : " typedoc --entryPoints src/main.ts" ,
27
27
"build" : " tsc -p tsconfig.json" ,
28
- "build-all" : " yarn clean && yarn build"
28
+ "build-all" : " npm run clean && npm run build"
29
29
},
30
30
"devDependencies" : {
31
31
"@types/jest" : " ^27.4.0" ,
You can’t perform that action at this time.
0 commit comments