Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Separate tests replased with one script in examples CI #318

Merged
merged 5 commits into from
Dec 5, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 3 additions & 29 deletions .github/workflows/examples.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,32 +23,6 @@ jobs:
node-version: 16.x
cache: pnpm
- name: Install dependencies
run: pnpm install && cd examples && pnpm install
- name: clean-state
run: cd examples && pnpm build:clean-state && pnpm test:clean-state
- name: counter
run: cd examples && pnpm build:counter && pnpm test:counter
- name: counter-lowlevel
run: cd examples && pnpm build:counter-lowlevel && pnpm test:counter-lowlevel
- name: counter-ts
run: cd examples && pnpm build:counter-ts && pnpm test:counter-ts
- name: cross-contract-call
run: cd examples && pnpm build:cross-contract-call && pnpm test:cross-contract-call
- name: fungible-token-lockable
run: cd examples && pnpm build:fungible-token-lockable && pnpm test:fungible-token-lockable
- name: fungible-token
run: cd examples && pnpm build:fungible-token && pnpm test:fungible-token
- name: non-fungible-token
run: cd examples && pnpm build:non-fungible-token && pnpm test:non-fungible-token
- name: status-message-collections
run: cd examples && pnpm build:status-message-collections && pnpm test:status-message-collections
- name: status-message
run: cd examples && pnpm build:status-message && pnpm test:status-message
- name: parking-lot
run: cd examples && pnpm build:parking-lot && pnpm test:parking-lot
- name: standard nft
run: cd examples && pnpm build-nft && pnpm test:nft
- name: programmatic-update
run: cd examples && pnpm build:programmatic-update && pnpm test:programmatic-update
- name: cross-contract-call-loop
run: cd examples && pnpm build:cross-contract-call-loop && pnpm test:cross-contract-call-loop
run: pnpm install
- name: Run examples tests
run: pnpm test:examples