diff options
-rw-r--r-- | .github/workflows/ci.yml | 22 | ||||
-rw-r--r-- | pages/index.tsx | 6 |
2 files changed, 17 insertions, 11 deletions
diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 25b5498..886189e 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -1,33 +1,33 @@ --- # File : ci.yml -name: "ci" +name: 'ci' on: push: defaults: run: - shell: "bash" + shell: 'bash' jobs: lint-test-build: - name: "[ci|lint-test-build]" - runs-on: "ubuntu-18.04" + name: '[ci|lint-test-build]' + runs-on: 'ubuntu-18.04' steps: - - name: "[checkout] ${{ github.repository }} project" - uses: "actions/checkout@v2" + - name: '[checkout] ${{ github.repository }} project' + uses: 'actions/checkout@v2' with: - repository: "${{ github.repository }}" - - name: "[lint]" + repository: '${{ github.repository }}' + - name: '[lint]' run: | echo TBA some linting - - name: "[test]" + - name: '[test]' run: | echo TBA some testing - - name: "[build]" + - name: '[build]' run: | git config --global url."https://github.com/".insteadOf ssh://[email protected]/ git config --global url."https://".insteadOf git:// git config --global url."https://".insteadOf ssh:// yarn yarn build -... +--- # End of ci.yml diff --git a/pages/index.tsx b/pages/index.tsx index 65c7eae..e298695 100644 --- a/pages/index.tsx +++ b/pages/index.tsx @@ -615,6 +615,12 @@ export const Graph = forwardRef(function (props: GraphProps, graphRef: any) { visuals.linkHighlight, visuals.nodeHighlight, visuals.linkColorScheme, + visuals.refLinkColor, + visuals.refNodeColor, + visuals.citeNodeColor, + visuals.refLinkHighlightColor, + visuals.citeLinkHighlightColor, + visuals.citeLinkColor, emacsTheme, ]) |