Commit 07e3636 1 parent df1365d commit 07e3636 Copy full SHA for 07e3636
File tree 4 files changed +2949
-2
lines changed
4 files changed +2949
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Yarn Install and Build
2
+
3
+ on :
4
+ workflow_call :
5
+
6
+ jobs :
7
+ build :
8
+ runs-on : ubuntu-latest
9
+
10
+ steps :
11
+ - uses : actions/checkout@v3
12
+
13
+ - name : Use Node.js
14
+ uses : actions/setup-node@v3
15
+ with :
16
+ node-version : " 18" # Specify the Node.js version you want to use
17
+
18
+ - name : Get yarn cache directory path
19
+ id : yarn-cache-dir-path
20
+ run : echo "dir=$(yarn cache dir)" >> $GITHUB_OUTPUT
21
+
22
+ - name : Cache yarn dependencies
23
+ uses : actions/cache@v3
24
+ with :
25
+ path : ${{ steps.yarn-cache-dir-path.outputs.dir }}
26
+ key : ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
27
+ restore-keys : |
28
+ ${{ runner.os }}-yarn-
29
+
30
+ - name : Install Dependencies
31
+ run : yarn install --frozen-lockfile
32
+
33
+ - name : Build
34
+ run : yarn run build
Original file line number Diff line number Diff line change 20
20
spellcheck :
21
21
name : Run spellcheck
22
22
uses : ./.github/workflows/spellcheck.yml
23
+
24
+ build :
25
+ name : Build
26
+ uses : ./.github/workflows/build.yml
Original file line number Diff line number Diff line change @@ -124,7 +124,8 @@ Each method has its own specific features and schema. Detailed information on ea
124
124
- ** Result** : The resulting block information with transaction hashes
125
125
- ** Errors** :
126
126
- ` BLOCK_NOT_FOUND ` : If the specified block does not exist
127
- </details >
127
+
128
+ </details >
128
129
129
130
### ` starknet_getBlockWithReceipts `
130
131
@@ -136,7 +137,8 @@ Each method has its own specific features and schema. Detailed information on ea
136
137
- ** Result** : The resulting block information with transaction hashes
137
138
- ** Errors** :
138
139
- ` BLOCK_NOT_FOUND ` : If the specified block does not exist
139
- </details >
140
+
141
+ </details >
140
142
141
143
### ` starknet_getBlockWithTxs `
142
144
You can’t perform that action at this time.
0 commit comments