Skip to content

Refactor configuration update to use Workspace target and enhance Che… #8

Refactor configuration update to use Workspace target and enhance Che…

Refactor configuration update to use Workspace target and enhance Che… #8

Workflow file for this run

name: Build and Test
on:
push:
branches: ['**'] # Triggers on push to any branch
pull_request:
branches: ['main'] # Also run on PRs to main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '20'
cache: 'yarn'
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Run build-all
run: yarn build-all