Skip to content

Commit 1508d6d

Browse files
authored
move the sample app to apps subfolder (#187)
1 parent 7ca3bb8 commit 1508d6d

File tree

175 files changed

+85
-70
lines changed

Some content is hidden

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

175 files changed

+85
-70
lines changed

.github/workflows/ci.yml

Lines changed: 11 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
name: CI
22
on:
33
push:
4-
branches: ['*']
4+
branches: ["*"]
55
paths-ignore:
6-
- 'README.md'
7-
- 'docs/**'
6+
- "README.md"
7+
- "docs/**"
88
pull_request:
99
branches: [master]
1010
paths-ignore:
11-
- 'README.md'
12-
- 'docs/**'
11+
- "README.md"
12+
- "docs/**"
1313
jobs:
1414
all-cli-check:
1515
runs-on: ubuntu-latest
16+
defaults:
17+
run:
18+
working-directory: ./apps/react-vite
1619
steps:
1720
- uses: actions/checkout@v4
1821
- uses: actions/setup-node@v4
@@ -33,6 +36,9 @@ jobs:
3336
e2e:
3437
timeout-minutes: 60
3538
runs-on: ubuntu-latest
39+
defaults:
40+
run:
41+
working-directory: ./apps/react-vite
3642
steps:
3743
- uses: actions/checkout@v4
3844
- uses: actions/setup-node@v4

.gitignore

Lines changed: 1 addition & 34 deletions
Original file line numberDiff line numberDiff line change
@@ -1,40 +1,7 @@
1-
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2-
31
# dependencies
42
/node_modules
53
/.pnp
64
.pnp.js
75

8-
# testing
9-
/coverage
10-
/test-results/
11-
/playwright-report/
12-
/blob-report/
13-
/playwright/.cache/
14-
/e2e/.auth/
15-
16-
# storybook
17-
migration-storybook.log
18-
storybook.log
19-
storybook-static
20-
21-
22-
# production
23-
/dist
24-
256
# misc
26-
.DS_Store
27-
.env
28-
.env.local
29-
.env.development.local
30-
.env.test.local
31-
.env.production.local
32-
33-
npm-debug.log*
34-
yarn-debug.log*
35-
yarn-error.log*
36-
37-
38-
# local
39-
mocked-db.json
40-
7+
.DS_Store

.husky/pre-commit

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
yarn lint-staged
1+
yarn --cwd apps/react-vite lint-staged
File renamed without changes.
File renamed without changes.
File renamed without changes.

apps/react-vite/.gitignore

Lines changed: 40 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,40 @@
1+
# See https://help.github.com/articles/ignoring-files/ for more about ignoring files.
2+
3+
# dependencies
4+
/node_modules
5+
/.pnp
6+
.pnp.js
7+
8+
# testing
9+
/coverage
10+
/test-results/
11+
/playwright-report/
12+
/blob-report/
13+
/playwright/.cache/
14+
/e2e/.auth/
15+
16+
# storybook
17+
migration-storybook.log
18+
storybook.log
19+
storybook-static
20+
21+
22+
# production
23+
/dist
24+
25+
# misc
26+
.DS_Store
27+
.env
28+
.env.local
29+
.env.development.local
30+
.env.test.local
31+
.env.production.local
32+
33+
npm-debug.log*
34+
yarn-debug.log*
35+
yarn-error.log*
36+
37+
38+
# local
39+
mocked-db.json
40+
File renamed without changes.
File renamed without changes.
File renamed without changes.

0 commit comments

Comments
 (0)