File tree Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Expand file tree Collapse file tree 3 files changed +9
-7
lines changed Original file line number Diff line number Diff line change @@ -24,17 +24,20 @@ jobs:
24
24
25
25
steps :
26
26
- uses : actions/checkout@v3
27
+ - uses : pnpm/action-setup@v2
28
+ with :
29
+ version : 8.6.10
27
30
- name : Use Node.js 16.x
28
31
uses : actions/setup-node@v3
29
32
with :
30
33
node-version : 16.x
31
- cache : ' yarn '
34
+ cache : ' pnpm '
32
35
- name : Install and Build
33
36
run : |
34
- yarn install --frozen-lockfile
35
- yarn build --if-present
37
+ pnpm install --frozen-lockfile
38
+ pnpm build --if-present
36
39
- name : Test
37
- run : yarn test
40
+ run : pnpm test
38
41
- uses : actions/upload-artifact@v3
39
42
with :
40
43
name : production-files
Original file line number Diff line number Diff line change 69
69
You can add webfonts, meta tags, or analytics to this file.
70
70
The build step will place the bundled scripts into the <body> tag.
71
71
72
- To begin the development, run `npm start` or `yarn start`.
73
- To create a production bundle, use `npm run build` or `yarn build`.
72
+ To begin the development, run `pnpm start`.
73
+ To create a production bundle, use `pnpm build`.
74
74
-->
75
75
</ body >
76
76
</ html >
Original file line number Diff line number Diff line change @@ -50,7 +50,6 @@ export default function getTestData(): object {
50
50
return testData . toJSON ( ) ;
51
51
}
52
52
53
- // eslint-disable-next-line @typescript-eslint/no-unused-vars
54
53
function extensiveData ( ) {
55
54
const duration : DurationString = "P8Y" ;
56
55
const marriageDate = new GedcomX . Date ( ) . setFormal (
You can’t perform that action at this time.
0 commit comments