-
-
Notifications
You must be signed in to change notification settings - Fork 4.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge custom date format plugin into main (#2756)
* migrating cdf plugin to main dt * updated tests to include merged cdf code * updated docs * fix regex and workflows
- Loading branch information
Showing
57 changed files
with
3,891 additions
and
4,934 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 |
---|---|---|
|
@@ -4,6 +4,4 @@ | |
**/.husky/ | ||
**/types/ | ||
**/build/ | ||
|
||
#temporary | ||
/test/test-import.ts | ||
**/test/ |
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,28 @@ | ||
on: | ||
workflow_call: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
- name: Npm install | ||
run: npm ci | ||
- name: Unit tests | ||
run: npm run test:coverage | ||
- name: Build docs | ||
run: npm run docs | ||
- name: 'Qodana Scan' | ||
uses: JetBrains/qodana-action@main | ||
env: | ||
QODANA_TOKEN: ${{ secrets.QODANA_TOKEN }} | ||
# Send coverage report to Coveralls | ||
- name: Coveralls | ||
uses: coverallsapp/github-action@master | ||
with: | ||
github-token: ${{ secrets.GITHUB_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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Feature Branch Publish Package | ||
|
||
on: | ||
push: | ||
branches: | ||
- 'feature/*' | ||
|
||
jobs: | ||
build: | ||
uses: ./build.yaml | ||
secrets: inherit | ||
publish: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Publish package | ||
run: | | ||
if [[ ${{ github.ref }} == "refs/heads/feature/*" ]]; then | ||
npm publish --access public --registry https://npm.pkg.github.com/ | ||
fi | ||
env: | ||
NODE_AUTH_TOKEN: ${{secrets.GITHUB_TOKEN}} |
File renamed without changes.
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,9 @@ | ||
const { ParvusServer } = require('@eonasdan/parvus-server'); | ||
|
||
new ParvusServer({ | ||
port: 3001, | ||
directory: `./docs`, | ||
middlewares: [], | ||
}) | ||
.startAsync() | ||
.then(); |
Oops, something went wrong.