Skip to content

Commit

Permalink
corrected verdacio error
Browse files Browse the repository at this point in the history
  • Loading branch information
Q committed Apr 4, 2024
1 parent 75645e4 commit ba132f9
Showing 1 changed file with 1 addition and 35 deletions.
36 changes: 1 addition & 35 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,40 +11,7 @@ jobs:
runs-on: ubuntu-latest

steps:
- name: "Checkout Repository"
uses: actions/checkout@v3
with:
path: repo

- name: "Checkout Weaver-UI-Core"
uses: actions/checkout@v3
with:
repository: TAMULib/Weaver-UI-Core
path: weaver-ui
ref: 2.x
# Specify depth of 0 to enable fetching all branches and tags so that the "Use Custom Weaver-UI-Core Repo Version" works.
fetch-depth: 0

- name: "Detect Custom Weaver-UI-Core Repo Version"
continue-on-error: true
if: ${{ env.CI_WUI_BRANCH == '' }}
run: |
cd weaver-ui
export CI_WUI_BRANCH_VERSION=$(grep -so -m 1 '"@wvr/core": "[^"]*"' ../repo/package.json | sed -e 's|"@wvr/core": "||' -e 's|"$||')
export CI_WUI_BRANCH=$(git tag | grep -so -m 1 "^$CI_WUI_BRANCH_VERSION$")
# Some projects prefix their version with a "v".
if [[ $CI_WUI_BRANCH == "" && $CI_WUI_BRANCH_VERSION != "" ]] ; then export CI_WUI_BRANCH=$(git tag | grep -so -m 1 "^v$CI_WUI_BRANCH_VERSION$") ; fi
echo "CI_WUI_BRANCH=$CI_WUI_BRANCH" >> $GITHUB_ENV
- name: "Use Custom Weaver-UI-Core Repo Version"
continue-on-error: true
if: ${{ env.CI_WUI_BRANCH != '' }}
run: |
cd weaver-ui
git reset --hard $CI_WUI_BRANCH
- name: "Run Weaver-UI-Core Docker Compose Registry Image"
run: docker-compose -f $GITHUB_WORKSPACE/weaver-ui/docker-compose.yml up -d registry
- uses: actions/checkout@v3

- name: "Install Chrome Drivers"
run: sudo apt-get install xvfb
Expand Down Expand Up @@ -74,5 +41,4 @@ jobs:
env:
COVERALLS_REPO_TOKEN: ${{ secrets.COVERALLS_REPO_TOKEN }}
run: |
cd $GITHUB_WORKSPACE/repo
xvfb-run --auto-servernum npm run test:ci

0 comments on commit ba132f9

Please sign in to comment.