forked from dowjones/react-dropdown-tree-select
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat/enable pop over on actions (#2)
* feat(actions): Adding actions renderer * feat(actions): Adding actions renderer * feat(actions): Render prop to able of render elements inside the actions * feat(general): Disabling travis and GH workflows Co-authored-by: Christian Pernillo <[email protected]>
- Loading branch information
1 parent
2701aa2
commit af10cdb
Showing
11 changed files
with
137 additions
and
116 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
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 |
---|---|---|
@@ -1,34 +1,34 @@ | ||
name: Docs | ||
# name: Docs | ||
|
||
on: | ||
push: | ||
branches: [develop] | ||
paths: | ||
- 'docs/**' | ||
- package.json | ||
- README.md | ||
# on: | ||
# push: | ||
# branches: [develop] | ||
# paths: | ||
# - 'docs/**' | ||
# - package.json | ||
# - README.md | ||
|
||
jobs: | ||
build-docs: | ||
runs-on: ubuntu-latest | ||
# jobs: | ||
# build-docs: | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
- name: Setup Node JS | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12.x | ||
- name: Build Docs 📚 | ||
run: | | ||
# un-ignore bundle.js | ||
mv docs/.gitignore .gitignore | ||
yarn install --ignore-engines | ||
yarn build:docs | ||
- name: Deploy Pages 🚀 | ||
uses: JamesIves/github-pages-deploy-action@releases/v3 | ||
with: | ||
ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: docs | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# with: | ||
# persist-credentials: false | ||
# - name: Setup Node JS | ||
# uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: 12.x | ||
# - name: Build Docs 📚 | ||
# run: | | ||
# # un-ignore bundle.js | ||
# mv docs/.gitignore .gitignore | ||
# yarn install --ignore-engines | ||
# yarn build:docs | ||
# - name: Deploy Pages 🚀 | ||
# uses: JamesIves/github-pages-deploy-action@releases/v3 | ||
# with: | ||
# ACCESS_TOKEN: ${{ secrets.ACCESS_TOKEN }} | ||
# BRANCH: gh-pages | ||
# FOLDER: docs |
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 |
---|---|---|
@@ -1,24 +1,24 @@ | ||
name: Release | ||
# name: Release | ||
|
||
on: | ||
push: | ||
branches: [master] | ||
# on: | ||
# push: | ||
# branches: [master] | ||
|
||
jobs: | ||
build-release: | ||
runs-on: ubuntu-latest | ||
# jobs: | ||
# build-release: | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Setup Node JS | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 12.x | ||
- run: yarn install --ignore-engines | ||
- run: yarn lint:nofix | ||
- run: yarn test | ||
- name: Release to npm 🚀 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
run: npx semantic-release | ||
# steps: | ||
# - uses: actions/checkout@v2 | ||
# - name: Setup Node JS | ||
# uses: actions/setup-node@v1 | ||
# with: | ||
# node-version: 12.x | ||
# - run: yarn install --ignore-engines | ||
# - run: yarn lint:nofix | ||
# - run: yarn test | ||
# - name: Release to npm 🚀 | ||
# env: | ||
# GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# NPM_TOKEN: ${{ secrets.NPM_TOKEN }} | ||
# run: npx semantic-release |
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 |
---|---|---|
@@ -1,21 +1,21 @@ | ||
name: Semantic Pull Request | ||
# name: Semantic Pull Request | ||
|
||
on: | ||
pull_request_target: | ||
types: | ||
- opened | ||
- edited | ||
- synchronize | ||
# on: | ||
# pull_request_target: | ||
# types: | ||
# - opened | ||
# - edited | ||
# - synchronize | ||
|
||
jobs: | ||
prlint: | ||
runs-on: ubuntu-latest | ||
# jobs: | ||
# prlint: | ||
# runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v2 | ||
# steps: | ||
# - name: Checkout | ||
# uses: actions/checkout@v2 | ||
|
||
- name: semantic-pull-request | ||
uses: amannn/[email protected] | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
# - name: semantic-pull-request | ||
# uses: amannn/[email protected] | ||
# env: | ||
# 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,18 @@ | ||
language: node_js | ||
cache: | ||
yarn: true | ||
directories: | ||
- node_modules | ||
git: | ||
depth: 3 | ||
jobs: | ||
include: | ||
- stage: test | ||
node_js: '10' | ||
install: | ||
- yarn install --ignore-engines | ||
script: | ||
- yarn coveralls | ||
branches: | ||
except: | ||
- /^v\d+\.\d+\.\d+$/ | ||
# language: node_js | ||
# cache: | ||
# yarn: true | ||
# directories: | ||
# - node_modules | ||
# git: | ||
# depth: 3 | ||
# jobs: | ||
# include: | ||
# - stage: test | ||
# node_js: '10' | ||
# install: | ||
# - yarn install --ignore-engines | ||
# script: | ||
# - yarn coveralls | ||
# branches: | ||
# except: | ||
# - /^v\d+\.\d+\.\d+$/ |
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 |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "react-dropdown-tree-select", | ||
"version": "0.0.0-semantic-release", | ||
"name": "@telus/telus-react-dropdown-tree-select", | ||
"version": "1.0.0", | ||
"description": "Lightweight, customizable and fast Dropdown Tree Select component for React", | ||
"keywords": [ | ||
"react", | ||
|
@@ -20,7 +20,10 @@ | |
], | ||
"main": "dist/react-dropdown-tree-select.js", | ||
"types": "dist/react-dropdown-tree-select.d.ts", | ||
"repository": "https://github.com/dowjones/react-dropdown-tree-select.git", | ||
"repository": { | ||
"type": "git", | ||
"url": "git+https://github.com/telus/react-dropdown-tree-select.git" | ||
}, | ||
"author": "Hrusikesh Panda <[email protected]>", | ||
"license": "MIT", | ||
"scripts": { | ||
|
@@ -193,5 +196,12 @@ | |
"pre-commit": "lint-staged", | ||
"commit-msg": "commitlint -E HUSKY_GIT_PARAMS" | ||
} | ||
}, | ||
"bugs": { | ||
"url": "https://github.com/telus/react-dropdown-tree-select/issues" | ||
}, | ||
"homepage": "https://github.com/telus/react-dropdown-tree-select#readme", | ||
"directories": { | ||
"doc": "docs" | ||
} | ||
} |
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 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