-
Notifications
You must be signed in to change notification settings - Fork 13
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Changes travis test in favour of github action. * Removes locales from moment to reduce the bundle size. * Create a custom distribution to remove the dependencies to avoid installing useless node package in the final application * Removes multiple bootstrap inclusion. * Create a new JSONSchema7 interface to add the form options. * Updates third party dependencies, such as ngx-bootstrap, ngx-formly, etc. Co-Authored-by: Johnny Mariéthoz <[email protected]>
- Loading branch information
Showing
145 changed files
with
8,734 additions
and
9,647 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,30 @@ | ||
name: build | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
build: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
strategy: | ||
matrix: | ||
node-version: [12.x] | ||
|
||
steps: | ||
- uses: actions/checkout@v1 | ||
- name: Use Node.js ${{ matrix.node-version }} | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: ${{ matrix.node-version }} | ||
- name: install package | ||
run: | | ||
npm install -g @angular/cli@11 | ||
npm ci | ||
- name: run tests | ||
run: | | ||
./run-tests.sh | ||
npm run pack | ||
env: | ||
CI: true |
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.