feat(world): add support for composite keys in KeysWithValue module #70
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: Tests | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
jobs: | |
test: | |
name: Run tests | |
runs-on: ubuntu-latest | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Setup | |
uses: ./.github/actions/setup | |
- name: Build | |
uses: ./.github/actions/build | |
- name: Run tests | |
run: pnpm test | |
- name: Generate gas reports | |
run: pnpm gas-report | |
- name: Outdated files, run `pnpm gas-report` and commit them | |
uses: ./.github/actions/require-empty-diff | |
- name: Lint | |
run: pnpm lint | |
- name: Sort package.json | |
run: pnpm sort-package-json | |
- name: Outdated files, run `sort-package-json` and commit them | |
uses: ./.github/actions/require-empty-diff |