-
Notifications
You must be signed in to change notification settings - Fork 19
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
45eec21
commit c8ad115
Showing
7 changed files
with
10,320 additions
and
471 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 |
---|---|---|
@@ -1,27 +1,7 @@ | ||
<!-- Are you asking for help or have a general question? --> | ||
<!-- If so, please consider using the D3plus Gitter community. --> | ||
<!-- https://gitter.im/d3plus/ --> | ||
<!-- If possible, please recreate your issue in a JSFiddle. --> | ||
|
||
<!-- Provide a general summary of the issue in the title above. --> | ||
<!-- Please create separate issues for each individual bug/feature. --> | ||
<!-- You can use this template to get started: --> | ||
<!-- https://jsfiddle.net/davelandry/u7dfeop0/ --> | ||
|
||
### Expected Behavior | ||
<!-- If you're describing a bug, tell us what should happen --> | ||
<!-- If you're suggesting a change/improvement, tell us how it should work --> | ||
|
||
### Current Behavior | ||
<!-- If describing a bug, tell us what happens instead of the expected behavior --> | ||
<!-- If suggesting a change/improvement, explain the difference from current behavior --> | ||
|
||
### Steps to Reproduce (for bugs) | ||
<!-- Provide a link to a live example, a screenshot, --> | ||
<!-- and/or an unambiguous set of steps to reproduce this bug. --> | ||
1. | ||
2. | ||
3. | ||
|
||
### Your Environment | ||
<!-- Include as many relevant details about the environment in which you experienced the bug. --> | ||
* Browser Name: | ||
* Operating System and Version: | ||
<!-- Please remove as many unrelated methods until the bug is still reproducible. --> | ||
|
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,35 @@ | ||
name: Node.js CI | ||
|
||
on: | ||
push: | ||
branches: [ main ] | ||
pull_request: | ||
branches: [ main ] | ||
|
||
jobs: | ||
test: | ||
|
||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
|
||
- name: Install Node | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '12' | ||
- name: Install Basic Fonts | ||
run: echo ttf-mscorefonts-installer msttcorefonts/accepted-mscorefonts-eula select true | sudo debconf-set-selections && sudo apt-get install ttf-mscorefonts-installer | ||
- name: Setup xvfb (Linux) | ||
if: runner.os == 'Linux' | ||
run: | | ||
sudo apt-get install -y xvfb libxkbcommon-x11-0 libxcb-icccm4 libxcb-image0 libxcb-keysyms1 libxcb-randr0 libxcb-render-util0 libxcb-xinerama0 libxcb-xinput0 libxcb-xfixes0 | ||
# start xvfb in the background | ||
sudo /usr/bin/Xvfb $DISPLAY -screen 0 1280x1024x24 & | ||
- name: Install Dependencies | ||
run: npm ci | ||
- name: Link d3plus-dev Scripts | ||
run: npm link | ||
- name: Run Headless Tests | ||
run: xvfb-run -a npm test |
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.