Skip to content

Commit

Permalink
Merge branch 'main' into fix/joint-jogging-race-condition
Browse files Browse the repository at this point in the history
  • Loading branch information
evrys authored Nov 27, 2024
2 parents 45a1ad6 + 93fb69f commit 5cb3f69
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 3 deletions.
6 changes: 4 additions & 2 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,8 @@ jobs:
build-and-release:
runs-on: ubuntu-latest
needs: build
env:
HUSKY: 0
if: ${{ github.event_name == 'push' && github.ref == 'refs/heads/main' }}
permissions:
contents: write # to be able to publish a GitHub release
Expand Down Expand Up @@ -73,6 +75,8 @@ jobs:
publish-snapshot:
runs-on: ubuntu-latest
needs: build
env:
HUSKY: 0
if: ${{ github.event_name == 'pull_request' }}
permissions:
contents: write # to be able to publish a GitHub release
Expand All @@ -91,8 +95,6 @@ jobs:
with:
name: build-artifacts
path: dist/
- name: Install dependencies
run: npm clean-install
- name: Configure npm authentication
run: echo "//registry.npmjs.org/:_authToken=${{ secrets.NPM_TOKEN }}" > ~/.npmrc
- name: Fetch latest release version
Expand Down
4 changes: 4 additions & 0 deletions .github/workflows/storybook.yml
Original file line number Diff line number Diff line change
Expand Up @@ -37,6 +37,8 @@ jobs:
build:
runs-on: ubuntu-latest
name: Build
env:
HUSKY: 0
needs:
- build_matrix
strategy:
Expand Down Expand Up @@ -65,6 +67,8 @@ jobs:
deploy:
runs-on: ubuntu-latest
name: Deploy
env:
HUSKY: 0
if: always()
needs:
- build_matrix
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
"ci:test:runner": "wait-on tcp:127.0.0.1:9009 && test-storybook --url http://127.0.0.1:9009 --index-json --browsers chromium",
"build": "rimraf dist && vite build && tsc --declaration --emitDeclarationOnly",
"build-storybook": "storybook build",
"prepare": "husky"
"prepare": "husky || true"
},
"repository": {
"type": "git",
Expand Down

0 comments on commit 5cb3f69

Please sign in to comment.