Skip to content

Commit

Permalink
Merge remote-tracking branch 'origin/feature/create-typink' into feat…
Browse files Browse the repository at this point in the history
…ure/create-typink
  • Loading branch information
sinzii committed Jan 26, 2025
2 parents 4de639f + cb07d1d commit cdde2c9
Showing 1 changed file with 6 additions and 30 deletions.
36 changes: 6 additions & 30 deletions .github/workflows/create-typink-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,7 @@ jobs:
strategy:
matrix:
node-version: [20.x]
wallet: ['Default', 'SubConnect V2', 'Talisman Connect']

steps:
- uses: actions/checkout@v3
Expand All @@ -22,39 +23,14 @@ jobs:
cache: 'yarn'
- run: yarn install --immutable
- run: yarn build
- name: Create app with create-typink (Default)
- name: Create and build app with create-typink (${{ matrix.wallet }})
run: |
export YARN_ENABLE_IMMUTABLE_INSTALLS=false
cd ..
node ./typink/packages/create-typink/dist/bin/create-typink.mjs --no-git -n typink-app-default -t default -p greeter -N "Pop Testnet" -N "Aleph Zero Testnet" -w Default
node ./typink/packages/create-typink/dist/bin/create-typink.mjs \
--no-git -n typink-app-${{ matrix.wallet }} -t default -p greeter \
-N "Pop Testnet" -N "Aleph Zero Testnet" -w "${{ matrix.wallet }}"
ls -la
cd ./typink-app-default
cd ./typink-app-${{ matrix.wallet }}
ls -la
- name: Try to build (Default)
run: |
cd ../typink-app-default
yarn build
- name: Create app with create-typink (SubConnect V2)
run: |
export YARN_ENABLE_IMMUTABLE_INSTALLS=false
cd ..
node ./typink/packages/create-typink/dist/bin/create-typink.mjs --no-git -n typink-app-subconnect-v2 -t default -p greeter -N "Pop Testnet" -N "Aleph Zero Testnet" -w "SubConnect V2"
ls -la
cd ./typink-app-subconnect-v2
ls -la
- name: Try to build (SubConnect V2)
run: |
cd ../typink-app-subconnect-v2
yarn build
- name: Create app with create-typink (Talisman Connect)
run: |
export YARN_ENABLE_IMMUTABLE_INSTALLS=false
cd ..
node ./typink/packages/create-typink/dist/bin/create-typink.mjs --no-git -n typink-app-talisman-connect -t default -p greeter -N "Pop Testnet" -N "Aleph Zero Testnet" -w "Talisman Connect"
ls -la
cd ./typink-app-talisman-connect
ls -la
- name: Try to build (Talisman Connect)
run: |
cd ../typink-app-talisman-connect
yarn build

0 comments on commit cdde2c9

Please sign in to comment.