feat: pass arrays by reference to functions #296
Workflow file for this run
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
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 bun | |
run: npm i -g bun | |
- name: Install modules | |
run: bun install --frozen-lockfile | |
- name: Ensure version constant is up-to-date | |
run: bun scripts/version.ts | |
- name: Run ESLint | |
run: bun lint | |
- name: Run webpack smoketest | |
run: bun webpack-smoketest | |
- name: Run tests | |
run: bun test | |
- name: Run examples | |
run: bun run-examples | |