File tree 2 files changed +12
-6
lines changed
2 files changed +12
-6
lines changed Original file line number Diff line number Diff line change @@ -12,12 +12,18 @@ jobs:
12
12
build :
13
13
runs-on : ubuntu-latest
14
14
steps :
15
- - name : Check out code
15
+ - name : Checkout repository
16
16
uses : actions/checkout@v4
17
-
18
- - name : Install tools & dependencies
19
- uses : ./.github/actions/install
20
-
17
+ - uses : pnpm/action-setup@v3
18
+ with :
19
+ version : 8
20
+ - name : Setup Node.js
21
+ uses : actions/setup-node@v4
22
+ with :
23
+ node-version : 20.x
24
+ cache : pnpm
25
+ - name : Install dependencies
26
+ run : pnpm i
21
27
- name : Sync Orama
22
28
run : pnpm sync:orama
23
29
env :
Original file line number Diff line number Diff line change @@ -5,7 +5,7 @@ title: Overview
5
5
# Overview
6
6
7
7
:::info[ Prerequisites]
8
- The docs are based on latest Solid- Router.
8
+ The docs are based on latest Solid Router.
9
9
To use this version, you need to have Solid v1.8.4 or later installed.
10
10
:::
11
11
You can’t perform that action at this time.
0 commit comments