File tree 7 files changed +24
-20
lines changed
7 files changed +24
-20
lines changed Original file line number Diff line number Diff line change 1
1
name : Update Authors
2
2
3
3
on :
4
- push :
5
- branches :
6
- - master
4
+ # push:
5
+ # branches:
6
+ # - master
7
+ workflow_dispatch :
7
8
8
9
jobs :
9
10
run :
Original file line number Diff line number Diff line change 1
1
name : Contributors
2
2
3
3
on :
4
- schedule :
5
- - cron : " 0 8 * * 0"
6
4
push :
7
5
branches :
8
6
- master
Original file line number Diff line number Diff line change @@ -21,13 +21,15 @@ jobs:
21
21
with :
22
22
node-version : latest
23
23
check-latest : true
24
+
25
+ - name : " Install pnpm"
26
+ uses : pnpm/action-setup@v4
24
27
25
28
- name : " Install dependencies"
26
- run : |
27
- npm run i
29
+ run : pnpm i
28
30
29
31
- name : " Build and lint the code"
30
- run : npm run build && npm run lint- fix
32
+ run : pnpm build && pnpm lint: fix
31
33
32
34
- name : " Check for changes"
33
35
id : git-check
Original file line number Diff line number Diff line change @@ -28,12 +28,14 @@ jobs:
28
28
node-version : latest
29
29
check-latest : true
30
30
31
+ - name : " Install pnpm"
32
+ uses : pnpm/action-setup@v4
33
+
31
34
- name : " Install dependencies"
32
- run : |
33
- npm run i
35
+ run : pnpm i
34
36
35
37
- name : " Build the code"
36
- run : npm run build
38
+ run : pnpm build
37
39
38
40
- name : " Lint check"
39
- run : npm run lint
41
+ run : pnpm lint
Original file line number Diff line number Diff line change 1
1
name : Unfurl Links
2
2
3
3
on :
4
- issues :
5
- types : [opened, edited]
6
- issue_comment :
7
- types : [created, edited]
8
- pull_request :
9
- types : [opened, edited]
4
+ # issues:
5
+ # types: [opened, edited]
6
+ # issue_comment:
7
+ # types: [created, edited]
8
+ # pull_request:
9
+ # types: [opened, edited]
10
+ workflow_dispatch :
10
11
11
12
jobs :
12
13
run :
Original file line number Diff line number Diff line change 18
18
"@iconify/json" : " ^2.2.319" ,
19
19
"@intlify/unplugin-vue-i18n" : " 6.0.5" ,
20
20
"@stylistic/eslint-plugin" : " 4.2.0" ,
21
- "@unhead/vue" : " 1.11.20 " ,
21
+ "@unhead/vue" : " 2.0.0 " ,
22
22
"@vitejs/plugin-vue" : " 5.2.3" ,
23
23
"@vue/compiler-sfc" : " 3.5.13" ,
24
24
"aos" : " 2.3.4" ,
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ import cookie from "cookiejs"
19
19
import App from "./App.vue"
20
20
import router from "./router"
21
21
22
- import { createHead } from "@unhead/vue"
22
+ import { createHead } from "@unhead/vue/client "
23
23
import { polyfillCountryFlagEmojis } from "country-flag-emoji-polyfill"
24
24
import { createPinia } from "pinia"
25
25
import { createApp } from "vue"
You can’t perform that action at this time.
0 commit comments