File tree 4 files changed +844
-353
lines changed
4 files changed +844
-353
lines changed Original file line number Diff line number Diff line change @@ -21,14 +21,13 @@ jobs:
21
21
- name : Checkout your repository using git
22
22
uses : actions/checkout@v4
23
23
24
- # TODO: pull node version from .node-version file
25
24
- uses : actions/setup-node@v4
26
25
with :
27
- node-version : " 18 "
26
+ node-version-file : " .node-version "
28
27
cache : " yarn"
29
28
- run : yarn install
30
29
- run : yarn build
31
- - uses : actions/upload-pages-artifact@v2
30
+ - uses : actions/upload-pages-artifact@v3
32
31
with :
33
32
path : " dist/"
34
33
42
41
steps :
43
42
- name : Deploy to GitHub Pages
44
43
id : deployment
45
- uses : actions/deploy-pages@v2
44
+ uses : actions/deploy-pages@v4
46
45
47
46
e2e :
48
47
needs : [deploy]
@@ -53,13 +52,13 @@ jobs:
53
52
with :
54
53
browser : chrome
55
54
56
- - uses : actions/upload-artifact@v3
55
+ - uses : actions/upload-artifact@v4
57
56
if : failure()
58
57
with :
59
58
name : cypress-screenshots
60
59
path : cypress/screenshots
61
60
62
- - uses : actions/upload-artifact@v3
61
+ - uses : actions/upload-artifact@v4
63
62
if : always()
64
63
with :
65
64
name : cypress-videos
Original file line number Diff line number Diff line change 4
4
"private" : true ,
5
5
"scripts" : {
6
6
"dev" : " astro dev" ,
7
- "start" : " astro dev" ,
8
7
"build" : " astro build" ,
9
8
"preview" : " astro preview" ,
10
9
"astro" : " astro" ,
18
17
"@astrojs/sitemap" : " ^3.0.0" ,
19
18
"@astrojs/tailwind" : " ^5.0.0" ,
20
19
"@tailwindcss/typography" : " ^0.5.10" ,
21
- "@trivago/prettier-plugin-sort-imports" : " ^4.2.0" ,
22
20
"astro" : " ^3.1.2" ,
23
21
"astro-icon" : " ^0.8.1" ,
24
- "cypress" : " ^13.2 .0" ,
22
+ "cypress" : " ^14.3 .0" ,
25
23
"mdast-util-to-string" : " ^4.0.0" ,
26
- "prettier" : " ^3.0 .3" ,
24
+ "prettier" : " ^3.5 .3" ,
27
25
"reading-time" : " ^1.5.0" ,
28
26
"rehype-pretty-code" : " ^0.10.1" ,
29
- "sharp" : " ^0.32.6 " ,
30
- "tailwindcss" : " ^3.3.3 " ,
31
- "typescript" : " ^5.2.2 "
27
+ "sharp" : " ^0.34.1 " ,
28
+ "tailwindcss" : " ^3.4.17 " ,
29
+ "typescript" : " ^5.8.3 "
32
30
},
33
31
"packageManager" : " yarn@3.6.3"
34
32
}
Original file line number Diff line number Diff line change @@ -4,7 +4,4 @@ module.exports = {
4
4
trailingComma : "es5" ,
5
5
singleQuote : false ,
6
6
semi : true ,
7
- importOrder : [ "^[./]" ] ,
8
- importOrderSeparation : true ,
9
- importOrderSortSpecifiers : true ,
10
7
} ;
You can’t perform that action at this time.
0 commit comments