Skip to content

Commit

Permalink
feat(ci): enable tag building (#96)
Browse files Browse the repository at this point in the history
* feat(ci): enable tag building
  • Loading branch information
blanxii authored Sep 23, 2024
1 parent e12ff29 commit 907e993
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ jobs:
name: Build, Deploy to GitHub pages, Release npm package
needs: [test, visual-test]
runs-on: ubuntu-latest
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
if: github.ref == 'refs/heads/main' || startsWith(github.ref, 'refs/tags/')
steps:
- name: Checkout
uses: actions/checkout@v2
Expand Down
2 changes: 1 addition & 1 deletion test/functional/cypress/e2e/visual.cy.ts
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function compareSnapshot(zoomLevel: number, side: number) {
cy.wait('@modelDownloading');

// wait for the shadow under the avatar to build up with high wait time
cy.wait(20000);
cy.wait(30000);

const name = `avatar-zoom-${zoomLevel}-side-[${side}]`;

Expand Down

0 comments on commit 907e993

Please sign in to comment.