Skip to content

Commit

Permalink
Merge pull request #40 from samuelarbibe/ci-test
Browse files Browse the repository at this point in the history
ci: test
  • Loading branch information
samuelarbibe authored Jul 1, 2024
2 parents 311be28 + b4a7de0 commit 182b5b3
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,8 @@ jobs:
run: npm install --global vercel@latest
- name: Deploy to Vercel
id: deploy
run: echo "url=$(vercel ${{ inputs.isProd == true && '--prod' || '' }} --yes --token=${{ secrets.VERCEL_TOKEN }})" >> "$GITHUB_OUTPUT"
run: |
echo "url=$(vercel ${{ inputs.isProd == true && '--prod' || '' }} --yes --token=${{ secrets.VERCEL_TOKEN }})" >> "$GITHUB_OUTPUT"
code=$?
if [ $code -ne 0 ]; then exit 1; fi
3 changes: 3 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,9 @@

## dnd-timeline: A headless timeline library, based on [`dnd-kit`](https://docs.dndkit.com/)




- **Headless:** `dnd-timeline` is a headless-ui library, and contains 0 styling, aside from functional styling (position, z-index, etc.).
- **Hook-based:** exposes simple hooks like `useItem` and `useRow`, that should integrate seamlessly into your existing architecture.
- **Flexible:** very slim and flexible by design. `dnd-timeline` exposes utility functions and positional styling, and you can use them in conjunction with you favorite libraries - styling libraries (MUI, tailwindcss, ant-design, etc.), and functional libraries (react-virtual, framer-motion, etc.)
Expand Down

0 comments on commit 182b5b3

Please sign in to comment.