File tree Expand file tree Collapse file tree 2 files changed +34
-2
lines changed
packages/create-typink/templates/default/ui/src Expand file tree Collapse file tree 2 files changed +34
-2
lines changed Original file line number Diff line number Diff line change
1
+ name : Create Typink Tests
2
+
3
+ on :
4
+ push :
5
+ workflow_dispatch :
6
+ merge_group :
7
+
8
+ jobs :
9
+ create-typink-tests :
10
+ runs-on : ubuntu-latest
11
+
12
+ strategy :
13
+ matrix :
14
+ node-version : [20.x]
15
+
16
+ steps :
17
+ - uses : actions/checkout@v3
18
+ - name : Use Node.js ${{ matrix.node-version }}
19
+ uses : actions/setup-node@v3
20
+ with :
21
+ node-version : ${{ matrix.node-version }}
22
+ cache : ' yarn'
23
+ - run : yarn install --immutable
24
+ - run : yarn build
25
+ - name : Create app with create-typink (Default)
26
+ run : |
27
+ cd ..
28
+ npx ./typink/packages/create-typink -n typink-app-example -t default -p greeter -N "Pop Testnet" -N "Aleph Zero Testnet" -w Default
29
+ ls -la
30
+ cd ./typink-app-example
31
+ ls -la
32
+ - name : Try to build (Default)
33
+ run : yarn build
Original file line number Diff line number Diff line change @@ -2,7 +2,7 @@ import { Box, Flex } from '@chakra-ui/react';
2
2
import BalanceInsufficientAlert from '@/components/shared/BalanceInsufficientAlert.tsx' ;
3
3
import MainFooter from '@/components/shared/MainFooter' ;
4
4
import MainHeader from '@/components/shared/MainHeader' ;
5
- import MainBoard from '@/components/MainBoard.tsx' ;
5
+ import MainBoards from '@/components/MainBoard.tsx' ;
6
6
7
7
function App ( ) {
8
8
return (
@@ -21,4 +21,3 @@ function App() {
21
21
}
22
22
23
23
export default App ;
24
-
You can’t perform that action at this time.
0 commit comments