Formalize interCom comands. Make WorkerTaskDefaultWorker and comRouti… #49
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 | |
on: push | |
jobs: | |
build: | |
name: wtd | |
runs-on: ubuntu-latest | |
timeout-minutes: 10 | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Use Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: '16' | |
- name: Build | |
shell: bash | |
run: | | |
npm ci | |
npm run build | |
- name: Test | |
shell: bash | |
run: | | |
npm run test | |
- name: Build Production | |
shell: bash | |
run: | | |
npm --prefix packages/examples run build:production | |
- name: Lint | |
shell: bash | |
run: | | |
npm run lint |