Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: splitting up open-scd and plugins #1469

Merged
merged 12 commits into from
Mar 14, 2024
Merged
Show file tree
Hide file tree
Changes from 5 commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
10 changes: 8 additions & 2 deletions .github/workflows/test-and-build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,16 +11,22 @@ jobs:
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '18.x'
node-version: "18.x"

- name: Install and build Core
run: |
cd packages/core
npm clean-install
npm run-script build

- name: Install and Build OpenSCD
run: |
cd packages/open-scd
npm clean-install
npm run-script build

- name: Install and Build Plugins
run: |
cd packages/plugins
npm clean-install
npm run-script build
9 changes: 8 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- main
paths:
- packages/open-scd/**
- packages/plugins/**

jobs:
test:
Expand All @@ -16,10 +17,16 @@ jobs:
- name: Use Node.js 18.x
uses: actions/setup-node@v1
with:
node-version: '18.x'
node-version: "18.x"

- name: Install and Test
run: |
cd packages/open-scd
npm clean-install
npm run-script test

- name: Install and Test
run: |
cd packages/plugins
npm clean-install
npm run-script test
Loading
Loading