fix: Put schema files into a Map to allow direct access with a schema… #297
Workflow file for this run
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 npm Package | |
on: | |
push: | |
branches: | |
- main | |
pull_request: | |
types: [opened, synchronize, reopened] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
steps: | |
- name: 'Checkout source code' | |
uses: actions/checkout@v4 | |
- uses: actions/setup-node@v3 | |
with: | |
node-version: '18.x' | |
registry-url: 'https://registry.npmjs.org' | |
scope: '@kaoto' | |
cache: 'yarn' | |
- uses: actions/setup-java@v3 | |
with: | |
distribution: 'temurin' | |
java-version: '17' | |
# Install dependencies | |
- run: yarn | |
# Lint files | |
- name: 💅 Run eslint | |
run: yarn lint-staged | |
# Run tests | |
- name: 🧪 Run tests | |
run: yarn workspaces foreach --verbose --topological-dev run test | |
# Build packages | |
- name: Build packages | |
run: yarn workspaces foreach --verbose --topological-dev run build | |
# Build lib | |
- name: Build @kaoto-next/ui package in lib mode | |
run: yarn workspace @kaoto-next/ui run build:lib |