File tree 6 files changed +15631
-9479
lines changed
6 files changed +15631
-9479
lines changed Original file line number Diff line number Diff line change @@ -17,12 +17,15 @@ jobs:
17
17
- name : Setup node
18
18
uses : actions/setup-node@v3
19
19
with :
20
- node-version : 14
21
- cache : ' yarn '
20
+ node-version : 18
21
+ cache : ' npm '
22
22
registry-url : ' https://registry.npmjs.org'
23
23
24
- - name : Yarn Install
25
- run : yarn install --network-concurrency 1
24
+ - name : NPM Install
25
+ run : npm ci
26
+
27
+ - name : NPM Build
28
+ run : npm run build
26
29
27
30
- name : Publish (NPM)
28
31
run : npm publish --provenance --access public
Original file line number Diff line number Diff line change 9
9
- uses : actions/checkout@v3
10
10
- uses : actions/setup-node@v3
11
11
with :
12
- node-version : 16
13
- cache : ' yarn '
12
+ node-version : 18
13
+ cache : ' npm '
14
14
15
- - name : Yarn Install
16
- run : yarn install
15
+ - name : NPM Install
16
+ run : npm ci
17
17
18
18
- name : Linting
19
- run : yarn lint
19
+ run : npm run lint
20
20
21
21
- name : Typing
22
- run : yarn typescript
22
+ run : npm run typescript
23
23
24
24
- name : Testing
25
- run : yarn test --coverage
25
+ run : npm run test --coverage
26
26
27
27
- name : Prepare Build
28
- run : yarn prepare
28
+ run : npm run build
Load Diff This file was deleted.
You can’t perform that action at this time.
0 commit comments