-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
267 changed files
with
10,419 additions
and
468 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
name: git push into another repo to deploy to vercel | ||
|
||
on: | ||
push: | ||
|
||
jobs: | ||
build: | ||
runs-on: ubuntu-latest | ||
container: pandoc/latex | ||
steps: | ||
- uses: actions/checkout@v2 | ||
- name: Install mustache (to update the date) | ||
run: apk add ruby && gem install mustache | ||
- name: creates output | ||
run: sh ./build.sh | ||
- name: Pushes to another repository | ||
id: push_directory | ||
uses: cpina/github-action-push-to-another-repository@main | ||
env: | ||
API_TOKEN_GITHUB: ${{ secrets.JOBIS_GITHUB_TOKEN }} | ||
with: | ||
source-directory: 'output' | ||
destination-github-username: teamreturn | ||
destination-repository-name: JOBIS-FE | ||
user-email: ${{ secrets.RETURN_ACCOUNT_EMAIL }} | ||
commit-message: ${{ github.event.commits[0].message }} | ||
target-branch: ${{ github.ref_name }} | ||
- name: Test get variable exported by push-to-another-repository | ||
run: echo $DESTINATION_CLONED_DIRECTORY |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,127 +1,134 @@ | ||
module.exports = { | ||
"extends": ["stylelint-config-standard"], | ||
"plugins": ["stylelint-order"], | ||
"customSyntax": "postcss-styled-syntax", | ||
"rules": { | ||
"declaration-empty-line-before": [ | ||
"always", | ||
{ | ||
"ignore": ["after-comment", "after-declaration", "inside-single-line-block"] | ||
} | ||
], // 중간 공백 추가 | ||
"shorthand-property-no-redundant-values": true, // ex) margin: 1px 1px 1px 1px -> margin 1px 축약 | ||
|
||
"order/order": ["custom-properties", "declarations"], // 코드 스타일의 순서 검사 | ||
"order/properties-order": [ | ||
{ | ||
"groupName": "Layout", | ||
"noEmptyLineBetween": true, | ||
"properties": [ | ||
"position", | ||
"top", | ||
"right", | ||
"bottom", | ||
"left", | ||
"display", | ||
"visibility", | ||
"overflow", | ||
"float", | ||
"clear", | ||
"z-index", | ||
"flex-direction", | ||
"flex-wrap", | ||
"float", | ||
"grid", | ||
"grid-template-columns", | ||
"grid-area", | ||
"grid-template-rows", | ||
"grid-column", | ||
"grid-template-areas", | ||
"grid-auto-flow", | ||
"grid-row", | ||
"grid-auto-rows", | ||
"justify-content", | ||
"align-items" | ||
] | ||
}, | ||
{ | ||
"groupName": "Box", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": [ | ||
"width", | ||
"height", | ||
"margin", | ||
"margin-top", | ||
"margin-right", | ||
"margin-bottom", | ||
"margin-left", | ||
"padding", | ||
"padding-top", | ||
"padding-right", | ||
"padding-bottom", | ||
"padding-left", | ||
"border", | ||
"border-radius", | ||
"border-color", | ||
"border-width", | ||
"border-style", | ||
"border-bottom", | ||
"border-top", | ||
"border-left", | ||
"border-right" | ||
] | ||
}, | ||
{ | ||
"groupName": "Background", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": [ | ||
"background", | ||
"background-color", | ||
"background-image", | ||
"opacity", | ||
"overflow", | ||
"text-overflow", | ||
"outline" | ||
] | ||
}, | ||
{ | ||
"groupName": "Font", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": [ | ||
"color", | ||
"font-size", | ||
"font-family", | ||
"font-style", | ||
"font-weight", | ||
"line-height", | ||
"letter-spacing", | ||
"text-align", | ||
"text-indent", | ||
"vertical-align", | ||
"white-space", | ||
"text-decoration", | ||
"text-transform", | ||
"text-shadow", | ||
"text-overflow" | ||
] | ||
}, | ||
{ | ||
"groupName": "Animation", | ||
"emptyLineBefore": "always", | ||
"noEmptyLineBetween": true, | ||
"properties": [ | ||
"translate", | ||
"animation", | ||
"transition", | ||
"transition-property", | ||
"transition-duration", | ||
"transition-delay", | ||
"transition-timing-function" | ||
] | ||
} | ||
] // style 순서 | ||
} | ||
} | ||
extends: ["stylelint-config-standard"], | ||
plugins: ["stylelint-order"], | ||
customSyntax: "postcss-styled-syntax", | ||
rules: { | ||
"no-duplicate-selectors": null, | ||
"declaration-empty-line-before": [ | ||
"always", | ||
{ | ||
ignore: [ | ||
"after-comment", | ||
"after-declaration", | ||
"inside-single-line-block", | ||
"first-nested", | ||
], | ||
}, | ||
], // 중간 공백 추가 | ||
"shorthand-property-no-redundant-values": true, // ex) margin: 1px 1px 1px 1px -> margin 1px 축약 | ||
"font-family-no-missing-generic-family-keyword": null, | ||
|
||
"order/order": ["custom-properties", "declarations"], // 코드 스타일의 순서 검사 | ||
"order/properties-order": [ | ||
{ | ||
groupName: "Layout", | ||
noEmptyLineBetween: true, | ||
properties: [ | ||
"position", | ||
"top", | ||
"right", | ||
"bottom", | ||
"left", | ||
"display", | ||
"visibility", | ||
"overflow", | ||
"float", | ||
"clear", | ||
"z-index", | ||
"flex-direction", | ||
"flex-wrap", | ||
"float", | ||
"grid", | ||
"grid-template-columns", | ||
"grid-area", | ||
"grid-template-rows", | ||
"grid-column", | ||
"grid-template-areas", | ||
"grid-auto-flow", | ||
"grid-row", | ||
"grid-auto-rows", | ||
"justify-content", | ||
"align-items", | ||
], | ||
}, | ||
{ | ||
groupName: "Box", | ||
emptyLineBefore: "always", | ||
noEmptyLineBetween: true, | ||
properties: [ | ||
"width", | ||
"height", | ||
"margin", | ||
"margin-top", | ||
"margin-right", | ||
"margin-bottom", | ||
"margin-left", | ||
"padding", | ||
"padding-top", | ||
"padding-right", | ||
"padding-bottom", | ||
"padding-left", | ||
"border", | ||
"border-radius", | ||
"border-color", | ||
"border-width", | ||
"border-style", | ||
"border-bottom", | ||
"border-top", | ||
"border-left", | ||
"border-right", | ||
], | ||
}, | ||
{ | ||
groupName: "Background", | ||
emptyLineBefore: "always", | ||
noEmptyLineBetween: true, | ||
properties: [ | ||
"background", | ||
"background-color", | ||
"background-image", | ||
"opacity", | ||
"overflow", | ||
"text-overflow", | ||
"outline", | ||
], | ||
}, | ||
{ | ||
groupName: "Font", | ||
emptyLineBefore: "always", | ||
noEmptyLineBetween: true, | ||
properties: [ | ||
"color", | ||
"font-size", | ||
"font-family", | ||
"font-style", | ||
"font-weight", | ||
"line-height", | ||
"letter-spacing", | ||
"text-align", | ||
"text-indent", | ||
"vertical-align", | ||
"white-space", | ||
"text-decoration", | ||
"text-transform", | ||
"text-shadow", | ||
"text-overflow", | ||
], | ||
}, | ||
{ | ||
groupName: "Animation", | ||
emptyLineBefore: "always", | ||
noEmptyLineBetween: true, | ||
properties: [ | ||
"translate", | ||
"animation", | ||
"transition", | ||
"transition-property", | ||
"transition-duration", | ||
"transition-delay", | ||
"transition-timing-function", | ||
], | ||
}, | ||
], // style 순서 | ||
}, | ||
}; |
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.4 KB
.yarn/cache/@babel-plugin-transform-react-jsx-self-npm-7.24.1-f8f4855dc7-a0ff893b94.zip
Binary file not shown.
Binary file added
BIN
+5.5 KB
.yarn/cache/@babel-plugin-transform-react-jsx-source-npm-7.24.1-e820d18c2f-396ce878dc.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file renamed
BIN
+36.4 MB
...inux-x64-gnu-npm-13.5.6-4b2c3a039f-10.zip → ...darwin-arm64-npm-13.5.6-8aaf0355d3-10.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file removed
BIN
-1.02 MB
.yarn/cache/@rollup-rollup-linux-x64-gnu-npm-4.12.1-36af329d25-10.zip
Binary file not shown.
Binary file renamed
BIN
+14.6 MB
...nux-x64-gnu-npm-1.3.107-1986905504-10.zip → ...arwin-arm64-npm-1.3.107-7cf917d486-10.zip
Binary file not shown.
Binary file added
BIN
+493 KB
.yarn/cache/@tanstack-query-core-npm-5.28.13-c900f2d979-bab25412d2.zip
Binary file not shown.
Binary file added
BIN
+681 KB
.yarn/cache/@tanstack-query-devtools-npm-5.28.10-6ce5d82505-3caa49e835.zip
Binary file not shown.
Binary file added
BIN
+32.7 KB
.yarn/cache/@tanstack-react-query-devtools-npm-5.28.14-2f185e3427-47f342d287.zip
Binary file not shown.
Binary file added
BIN
+444 KB
.yarn/cache/@tanstack-react-query-npm-5.28.14-e057183b8c-376cd46b20.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+811 KB
.yarn/cache/@typescript-eslint-eslint-plugin-npm-7.5.0-f8a3cafb6e-5469900a0c.zip
Binary file not shown.
Binary file added
BIN
+8.93 KB
.yarn/cache/@typescript-eslint-parser-npm-7.5.0-950f9b5b79-a5414fb2fb.zip
Binary file not shown.
Binary file added
BIN
+333 KB
.yarn/cache/@typescript-eslint-scope-manager-npm-7.5.0-e9f885564e-9446c07290.zip
Binary file not shown.
Binary file added
BIN
+53.4 KB
.yarn/cache/@typescript-eslint-type-utils-npm-7.5.0-a1986d3fb3-2577305537.zip
Binary file not shown.
Binary file added
BIN
+30.5 KB
.yarn/cache/@typescript-eslint-types-npm-7.5.0-039134627b-12eac46d0d.zip
Binary file not shown.
Binary file added
BIN
+174 KB
.yarn/cache/@typescript-eslint-typescript-estree-npm-7.5.0-4235eaf12f-7487293a9a.zip
Binary file not shown.
Binary file added
BIN
+111 KB
.yarn/cache/@typescript-eslint-utils-npm-7.5.0-76344a74cb-a0b2f206a1.zip
Binary file not shown.
Binary file added
BIN
+9.81 KB
.yarn/cache/@typescript-eslint-visitor-keys-npm-7.5.0-8472c4f821-ba83113110.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+6.96 KB
.yarn/cache/data-view-byte-length-npm-1.0.1-538a9e432e-f33c65e58d.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+5.27 KB
.yarn/cache/eslint-plugin-react-refresh-npm-0.4.6-e117356250-104501b151.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+17.2 KB
.yarn/cache/nx-remotecache-custom-npm-4.2.1-40bc14f933-e990068eb8.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+14.6 KB
.yarn/cache/react-outside-click-handler-npm-1.3.0-7fa0d196a3-ab9ffbea36.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file added
BIN
+14.5 KB
.yarn/cache/string.prototype.trim-npm-1.2.9-7b24b35971-b2170903de.zip
Binary file not shown.
Binary file added
BIN
+11.5 KB
.yarn/cache/string.prototype.trimend-npm-1.0.8-9c0ed19266-c2e862ae72.zip
Binary file not shown.
Binary file added
BIN
+11.8 KB
.yarn/cache/string.prototype.trimstart-npm-1.0.8-8c6b16ba6e-160167dfbd.zip
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
Empty file.
Oops, something went wrong.