block slot Field slot_type column pulldown menu. #1074
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: Build and test | |
| on: [push] | |
| jobs: | |
| test: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v2 | |
| - uses: actions/setup-node@v1 | |
| with: | |
| node-version: '18.x' | |
| - run: yarn install --frozen-lockfile | |
| - run: yarn format | |
| - run: yarn lint | |
| - run: yarn build:lib | |
| - run: yarn build:web | |
| - run: yarn test |