Skip to content

feat: initial changes to check the workflow build #1

feat: initial changes to check the workflow build

feat: initial changes to check the workflow build #1

Workflow file for this run

name: Continuous Delivery
on: push
jobs:
check:
name: Check
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 20
cache: 'yarn'
- name: Add monorepo yarn tools
run: yarn plugin import workspace-tools
- name: Install
run: yarn install
- name: Build
run: yarn workspaces foreach --since run build