Skip to content

Commit

Permalink
Merge pull request #149 from lsst-sqre/tickets/DM-37830
Browse files Browse the repository at this point in the history
DM-37830: Docstrings, tooltips and expanding cells
  • Loading branch information
mfisherlevine committed May 23, 2023
2 parents cbc3142 + cfa181f commit 7956434
Show file tree
Hide file tree
Showing 74 changed files with 9,613 additions and 1,679 deletions.
23 changes: 22 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,17 @@ jobs:
steps:
- uses: actions/checkout@v3

- name: Set up Node
uses: actions/setup-node@v3
with:
cache: 'npm'
node-version-file: '.nvmrc'

- name: npm install and build
run: |
npm install
npm run build
- name: Set up Python
uses: actions/setup-python@v4
with:
Expand Down Expand Up @@ -79,9 +90,19 @@ jobs:
with:
fetch-depth: 0

- uses: actions/setup-node@v3
with:
cache: 'npm'
node-version-file: '.nvmrc'

- name: npm install and build
run: |
npm install
npm run build
- name: Define the Docker tag
id: vars
run: echo ::set-output name=tag::$(scripts/docker-tag.sh)
run: echo "tag=$(scripts/docker-tag.sh)" >> $GITHUB_OUTPUT

- name: Print the tag
id: print
Expand Down
6 changes: 4 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
# webpack build outputs
src/rubintv/static/assets/


# Byte-compiled / optimized / DLL files
__pycache__/
*.py[cod]
Expand Down Expand Up @@ -147,5 +151,3 @@ jsconfig.json
*/jsconfig.json
.eslintrc.*
node_modules/
package-lock.json
package.json
1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
v19.6.0
1 change: 1 addition & 0 deletions MANIFEST.in
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
graft src/rubintv/static/assets
Loading

0 comments on commit 7956434

Please sign in to comment.