Skip to content

Commit 3e3a880

Browse files
merge pull request #1 from ignite-projects/develop
develop
2 parents 6474b4d + 2f64774 commit 3e3a880

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

71 files changed

+17239
-9
lines changed

.github/workflows/deploy-docs.yml

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,28 @@
1+
name: Deploy docs
2+
3+
on:
4+
push:
5+
branches:
6+
- main
7+
8+
jobs:
9+
build-and-deploy:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- name: Checkout
13+
uses: actions/checkout@v4
14+
15+
- name: Setup Node.js
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: 18
19+
20+
- run: npm ci
21+
22+
- run: npm run build
23+
24+
- name: Deploy storybook
25+
working-directory: ./packages/docs
26+
run: npm run deploy-storybook -- --ci --existing-output-dir=storybook-static
27+
env:
28+
GH_TOKEN: ${{ github.actor }}:${{ secrets.GITHUB_TOKEN }}

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
node_modules
2+
dist
3+
.turbo

README.md

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,11 @@
11
Components
22

3-
- [ ] Text
4-
- [ ] Heading
5-
- [ ] Box
6-
- [ ] Button
7-
- [ ] TextInput
8-
- [ ] TextArea
9-
- [ ] Checkbox
10-
- [ ] Avatar
11-
- [ ] MultiStep
3+
- [x] Text
4+
- [x] Heading
5+
- [x] Box
6+
- [x] Button
7+
- [x] TextInput
8+
- [x] TextArea
9+
- [x] Checkbox
10+
- [x] Avatar
11+
- [x] MultiStep

0 commit comments

Comments
 (0)