Skip to content

Commit

Permalink
asdf
Browse files Browse the repository at this point in the history
  • Loading branch information
paulbkoch committed Jul 25, 2024
1 parent ef56f63 commit e7ab7bd
Showing 1 changed file with 37 additions and 37 deletions.
74 changes: 37 additions & 37 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -110,41 +110,41 @@ jobs:
name: vis
path: shared/vis/dist

npm:
runs-on: ${{ env.ubuntu_bld }}
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Build npm package
run: |
cd shared/vis
npm install
npm run build-prod
npm pack
mkdir pkg
cp *.tgz pkg/
- name: Publish npm package
uses: actions/upload-artifact@v2
with:
name: npm
path: shared/vis/pkg
# npm:
# runs-on: ${{ env.ubuntu_bld }}
# steps:
# - name: Check out repository
# uses: actions/checkout@v2
# - name: Build npm package
# run: |
# cd shared/vis
# npm install
# npm run build-prod
# npm pack
# mkdir pkg
# cp *.tgz pkg/
# - name: Publish npm package
# uses: actions/upload-artifact@v2
# with:
# name: npm
# path: shared/vis/pkg

R:
runs-on: ${{ env.ubuntu_bld }}
steps:
- name: Check out repository
uses: actions/checkout@v2
- name: Build R package
run: |
cd R
sudo apt --yes update
sudo apt --yes install texlive-latex-base texlive-fonts-extra
Rscript build.R
- name: Display errors
if: failure()
run: cat bld/tmp/R/interpret.Rcheck/00install.out
- name: Publish R package
uses: actions/upload-artifact@v2
with:
name: R
path: bld/R
# R:
# runs-on: ${{ env.ubuntu_bld }}
# steps:
# - name: Check out repository
# uses: actions/checkout@v2
# - name: Build R package
# run: |
# cd R
# sudo apt --yes update
# sudo apt --yes install texlive-latex-base texlive-fonts-extra
# Rscript build.R
# - name: Display errors
# if: failure()
# run: cat bld/tmp/R/interpret.Rcheck/00install.out
# - name: Publish R package
# uses: actions/upload-artifact@v2
# with:
# name: R
# path: bld/R

0 comments on commit e7ab7bd

Please sign in to comment.