Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

2024 refactoring, documentation, and bug fixes. #147

Merged
merged 33 commits into from
Oct 2, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
33 commits
Select commit Hold shift + click to select a range
923adad
Stashing local updates
spond Oct 24, 2022
bcec8fe
Speedups thru faster indexing of unique attribute values. Fixed categ…
spond Jul 11, 2024
14485f1
Merging with master
spond Jul 11, 2024
d0d2ed2
Moving all globals into a separate file
spond Jul 12, 2024
0708769
Trigger playwright on 2024-refactoring-RF2 branch
spond Jul 12, 2024
ab9a17d
Factoring out network utility functions; encapsulating 'member' funct…
spond Jul 12, 2024
716a3be
Passing missing argument to lookup_option
spond Jul 12, 2024
b72f7f3
Fixing check_network_option
spond Jul 12, 2024
9c9ac2c
SLKP continued refactoring up to 09302024
spond Sep 30, 2024
1675519
bugfix
spond Sep 30, 2024
97330ac
Adding history elements
spond Oct 1, 2024
2d36a96
add clusterOI panel ui test
daniel-ji Jun 5, 2024
c235cb9
add node table sorting & filtering test
daniel-ji Jun 18, 2024
af28afe
Bug fixed; partial merge
spond Oct 1, 2024
07d19d9
work on migration selenium script
daniel-ji Aug 19, 2024
a73a9e6
html page fixes
daniel-ji Sep 11, 2024
4fe3932
Merging 5695da47d9dd2c128cda8f6780fdf21ffbc11cef
daniel-ji Sep 15, 2024
12dd084
organize files
daniel-ji Sep 17, 2024
2312293
social.html cleanup
spond Oct 1, 2024
7b7595e
misc.js tweak to enable auto-doc
spond Oct 1, 2024
4f70000
misc.js clean up and JSDoc
spond Oct 1, 2024
c089dc9
misc.js clean up and JSDoc
spond Oct 1, 2024
d3b5724
tables.js lint and jsdoc
spond Oct 1, 2024
37f783e
timeDateUtil.js lint and jsdoc
spond Oct 1, 2024
61af72c
lint/doc hivtraceClusterGraphSummary.js
spond Oct 1, 2024
c6536fe
lint/doc column_definitions.js
spond Oct 1, 2024
4542df5
lint/doc network.js
spond Oct 1, 2024
dc37abd
moving a few functions around
spond Oct 1, 2024
8da4c03
lint/doc helpers.js
spond Oct 1, 2024
6153502
lint/doc scatterplot.js
spond Oct 1, 2024
9bdeaa6
lint/doc histogram.js; remove unused and merge in tiny files into others
spond Oct 1, 2024
1d5ffdf
lint/doc
spond Oct 2, 2024
39d08c1
Adding jsdoc.json and the docs folder
spond Oct 2, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
39 changes: 20 additions & 19 deletions .github/workflows/playwright.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,7 @@ on:
- main
- master
- refactor
- 2024-refactoring-RF2
pull_request:
branches:
- main
Expand All @@ -15,22 +16,22 @@ jobs:
timeout-minutes: 60
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Use Node.js '22.x'
uses: actions/setup-node@v4
with:
node-version: '22.x'
- name: Install dependencies
run: npm install -g yarn && yarn
- name: Build the project
run: yarn build
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Run Playwright tests
run: yarn playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
- uses: actions/checkout@v4
- name: Use Node.js '22.x'
uses: actions/setup-node@v4
with:
node-version: "22.x"
- name: Install dependencies
run: npm install -g yarn && yarn
- name: Build the project
run: yarn build
- name: Install Playwright Browsers
run: yarn playwright install --with-deps
- name: Run Playwright tests
run: yarn playwright test
- uses: actions/upload-artifact@v4
if: always()
with:
name: playwright-report
path: playwright-report/
retention-days: 30
Loading
Loading