Skip to content

Merge branch 'inter-worker-com' #77

Merge branch 'inter-worker-com'

Merge branch 'inter-worker-com' #77

Workflow file for this run

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: '18'
- name: Install
shell: bash
run: |
npm ci
- name: Lint
shell: bash
run: |
npm run lint
- name: Build
shell: bash
run: |
npm run build
- name: Test
shell: bash
run: |
npm run test
- name: Build Production
shell: bash
run: |
npm --prefix packages/examples run build:production