Burn tokens IMPL#0x216e3Cd1770d86dc64a3FF774bef5cE800e6B488 #49
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: Run Tests | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
branches: [ main ] | |
defaults: | |
run: | |
shell: 'script -q -e -c "bash {0}"' # add support for colors in output. see: https://github.com/actions/runner/issues/241 | |
jobs: | |
test: | |
name: Test Code | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- uses: actions/setup-node@v2 | |
with: | |
node-version: '20.11.0' | |
- run: npm ci --no-audit | |
- run: npm run setkey ea120e1a3d4cf134c082808b0c2dae5bc2921da97c903e850ac0d3a0c83d9e55 | |
- run: npm test | |