feat(evolve): prepend evolve handler to set txid on eval handler #31
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: Arweave Name Token | ||
Check failure on line 1 in .github/workflows/ant.yaml GitHub Actions / Arweave Name TokenInvalid workflow file
|
||
on: [push, workflow_dispatch, pull_request] | ||
jobs: | ||
busted: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v4 | ||
name: Check out repository code | ||
- name: Setup Lua | ||
uses: leafo/gh-actions-lua@v10 | ||
with: | ||
luaVersion: '5.3' # Specify the Lua version you need | ||
- name: Setup LuaRocks | ||
uses: leafo/[email protected] | ||
- name: Install Busted | ||
run: luarocks install ar-io-ao-0.1-1.rockspec | ||
- name: Run Busted Tests | ||
run: busted . | ||
- name: Upload coverage reports to Codecov | ||
uses: codecov/[email protected] | ||
with: | ||
token: ${{ secrets.CODECOV_TOKEN }} | ||
build: | ||
runs-on: ubuntu-latest | ||
strategy: | ||
matrix: | ||
step: [build:aos, test] | ||
steps: | ||
- uses: actions/checkout@v4 | ||
- uses: actions/[email protected] | ||
with: | ||
node-version-file: '.nvmrc' | ||
cache: 'yarn' | ||
- run: yarn --frozen-lockfile | ||
- run: yarn ${{ matrix.step }} |