generated from it-at-m/oss-repository-en-template
-
Notifications
You must be signed in to change notification settings - Fork 7
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* feat: add frontend apps * feat: add apps * feat: add digiwf-api * fix: init file input migration * feat: add multi file input * chore: build pipelines * chore: build apps * fix: cache dependency path
- Loading branch information
1 parent
33631d4
commit eef5229
Showing
117 changed files
with
39,995 additions
and
8 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
name: build apps | ||
|
||
# For now we test the frontend by just building it, in the future tests should be run here | ||
|
||
on: | ||
push: | ||
branches: | ||
- '**' | ||
paths: | ||
- 'digiwf-apps/**' | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./digiwf-apps | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
cache: 'npm' | ||
cache-dependency-path: "./digiwf-apps/package-lock.json" | ||
- run: npm run init | ||
- run: npm run build |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,27 @@ | ||
name: release services | ||
|
||
# Run workflow on commits to the `main` branch | ||
on: | ||
push: | ||
tags: | ||
- 'apps_*.*.*' | ||
|
||
jobs: | ||
release-apps: | ||
runs-on: ubuntu-latest | ||
defaults: | ||
run: | ||
working-directory: ./digiwf-apps | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- uses: actions/setup-node@v2 | ||
with: | ||
node-version: '16' | ||
cache: 'npm' | ||
registry-url: 'https://registry.npmjs.org' | ||
cache-dependency-path: "./digiwf-apps/package-lock.json" | ||
- run: npm install && lerna bootstrap --ci | ||
- run: npm run build | ||
- run: lerna publish from-package --yes | ||
env: | ||
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }} |
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
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,11 @@ | ||
{ | ||
"packages": [ | ||
"packages/components/digiwf-form-renderer", | ||
"packages/components/digiwf-form-builder", | ||
"packages/components/digiwf-form-builder-settings", | ||
"packages/components/digiwf-engine-api-internal", | ||
"packages/components/digiwf-multi-file-input", | ||
"packages/apps/digiwf-forms-example" | ||
], | ||
"version": "0.17.0" | ||
} |
Oops, something went wrong.