Updated taco shop dapp to work with vite and the latest version of al… #205
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
on: [push] | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
taco-shop-compile-and-originate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Setup repo | |
uses: actions/checkout@v2 | |
- name: Setup node | |
uses: actions/setup-node@v2 | |
with: | |
node-version: 16 | |
- name: install modules | |
run: | | |
npm update | |
npm ci | |
- name: Taqueria compile and originate | |
uses: ecadlabs/[email protected] | |
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 |