fix: correct tagCountAt after subscription is made and add test case #130
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: Build contracts | |
on: [pull_request] | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: ["18"] | |
steps: | |
- uses: actions/checkout@v3 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Yarn install | |
run: yarn install --check-cache | |
- name: Yarn build | |
run: yarn build | |
- name: Lint | |
run: yarn lint |