Unify proto JS API for tracker and griffin UI #692
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: Test Griffin Package | |
on: | |
pull_request: | |
merge_group: | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: npm install | |
run: npm install | |
- name: typecheck | |
run: npm run typecheck | |
- name: lint | |
run: npm run lint -- --all | |
- name: run tests | |
run: npm run test | |
- name: build | |
run: npm run build |