Add IotM tracking: MrStore domain, database table, and live tracking #534
This file contains hidden or 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: kol.js | |
| on: | |
| push: | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version: 20 | |
| - name: Enable corepack | |
| run: corepack enable | |
| - name: Install modules | |
| run: yarn install --immutable | |
| - name: Run tests | |
| run: yarn workspace kol.js run test | |
| - name: Run type check | |
| run: yarn workspace kol.js run tsc |