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

Gino action v0.13.0 rc #42

Open
wants to merge 5 commits into
base: prerelease
Choose a base branch
from
Open
Show file tree
Hide file tree
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
3 changes: 2 additions & 1 deletion .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,10 +23,11 @@ jobs:
npm ci

- name: Taqueria compile and originate
uses: ecadlabs/taqueria-github-action@v0.12.0
uses: ecadlabs/taqueria-github-action@v0.13.0
with:
plugins: '@taqueria/plugin-ligo, @taqueria/plugin-jest, @taqueria/plugin-taquito'
compile_contracts: hello-tacos.mligo
deploy_contracts: hello-tacos.tz
sandbox_name: local
test_plugin: jest
environment: development
3 changes: 2 additions & 1 deletion .taq/config.json
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,8 @@
"development": {
"type": "flextesa",
"label": "Local Tezos Sandbox",
"rpcUrl": "http://localhost:20000"
"rpcUrl": "http://localhost:20000",
"sandboxName": "local"
},
"testing": {
"type": "simple",
Expand Down
2 changes: 1 addition & 1 deletion tests/taqueria.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ describe('E2E Testing for taqueria action', () => {
test('Verify that taqueria can originate a contract to the local sandbox', async () => {
const contractName = 'hello-tacos.tz'

const contractOriginate = await execPromise(`taq originate ${contractName}`, { cwd: `./` });
const contractOriginate = await execPromise(`taq originate ${contractName} --env development`, { cwd: `./` });
expect(contractOriginate.stdout).toContain(contractName);
expect(contractOriginate.stdout).toContain('local');

Expand Down