Skip to content

Commit 0e2719c

Browse files
committed
Github Action first run expect to be failed
1 parent a616c01 commit 0e2719c

File tree

2 files changed

+34
-2
lines changed

2 files changed

+34
-2
lines changed
Lines changed: 33 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,33 @@
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

packages/create-typink/templates/default/ui/src/App.tsx

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ import { Box, Flex } from '@chakra-ui/react';
22
import BalanceInsufficientAlert from '@/components/shared/BalanceInsufficientAlert.tsx';
33
import MainFooter from '@/components/shared/MainFooter';
44
import MainHeader from '@/components/shared/MainHeader';
5-
import MainBoard from '@/components/MainBoard.tsx';
5+
import MainBoards from '@/components/MainBoard.tsx';
66

77
function App() {
88
return (
@@ -21,4 +21,3 @@ function App() {
2121
}
2222

2323
export default App;
24-

0 commit comments

Comments
 (0)