Skip to content

0.24.0 - fix VariableDeclaration callExpression initializer #174

0.24.0 - fix VariableDeclaration callExpression initializer

0.24.0 - fix VariableDeclaration callExpression initializer #174

Workflow file for this run

name: TEALScript CI
on:
pull_request:
branches: [ main, dev ]
jobs:
test:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: Run algokit localnet
run: pipx install algokit && algokit localnet start
- name: Install modules
run: yarn
- name: Run ESLint
run: yarn run lint
- name: Run webpack smoketest
run: yarn run webpack-smoketest
- name: Run tests
run: yarn test
- name: Run example tests
run: yarn jest examples/
- name: Install ARC12 test dependencies
run: pip3 install -r ./examples/arc12/tests/requirements.txt
- name: Run ARC12 tests
run: python3 -m pytest ./examples/arc12/tests