Skip to content

Commit

Permalink
feat(SingleAccordion): wrapped component and .vue setup (#26)
Browse files Browse the repository at this point in the history
* Add SingleAccordion component

* Add support for building custom components
  • Loading branch information
MasterCarl authored Oct 1, 2024
1 parent 2a58229 commit c04ba38
Show file tree
Hide file tree
Showing 12 changed files with 991 additions and 4 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/pipeline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,20 @@ jobs:
with:
sarif_file: "trivy-results.sarif"

test:
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v3
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: "20"
- name: Install dependencies
run: npm ci
- name: Run tests
run: npm run test

# Deploy Storybook to GitHub Pages
build-and-deploy-storybook:
if: ${{ github.ref == 'refs/heads/main' }}
Expand Down
7 changes: 7 additions & 0 deletions .storybook/preview.ts
Original file line number Diff line number Diff line change
Expand Up @@ -32,6 +32,13 @@ setup((app) => {

const preview: Preview = {
loaders: [mswLoader],
parameters: {
options: {
storySort: {
order: ["primevue", "components", "tailwind"],
},
},
},
};

export default preview;
Loading

0 comments on commit c04ba38

Please sign in to comment.