-
Notifications
You must be signed in to change notification settings - Fork 90
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch 'main' into perf/dashboard-test
- Loading branch information
Showing
19 changed files
with
16,595 additions
and
10,710 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,27 +8,31 @@ jobs: | |
- uses: actions/checkout@v3 | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: 18 | ||
- name: Install yarn | ||
run: npm install -g yarn | ||
node-version: 18 | ||
- name: Run install | ||
uses: borales/actions-yarn@v4 | ||
with: | ||
cmd: install | ||
- name: make sure package.lock does not exist | ||
run: rm -f package-lock.json | ||
- name: Git Check Clean Tree | ||
uses: ArkadiK94/[email protected] | ||
with: | ||
error-reason: "removing package-lock.json file" | ||
error-reason: 'removing package-lock.json file' | ||
- name: Install dependencies | ||
run: yarn | ||
- name: Git Check Clean Tree | ||
uses: ArkadiK94/[email protected] | ||
with: | ||
error-reason: "yarn" | ||
error-reason: 'yarn' | ||
- name: Build | ||
run: yarn build | ||
- name: Build Storybook | ||
run: yarn build-storybook -o dist/storybook | ||
- name: Git Check Clean Tree | ||
uses: ArkadiK94/[email protected] | ||
with: | ||
error-reason: "yarn build" | ||
error-reason: 'yarn build and yarn build-storybook' | ||
- name: Clean up | ||
if: always() | ||
run: npm uninstall -g yarn | ||
run: npm uninstall -g yarn |
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
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
Large diffs are not rendered by default.
Oops, something went wrong.
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,3 @@ | ||
nodeLinker: node-modules | ||
|
||
yarnPath: .yarn/releases/yarn-4.0.1.cjs |
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,13 +1,13 @@ | ||
# Pulled March 21, 2023 | ||
FROM node:18@sha256:8d9a875ee427897ef245302e31e2319385b092f1c3368b497e89790f240368f5 | ||
FROM node:18@sha256:8d9a875ee427897ef245302e31e2319385b092f1c3368b497e89790f240368f5 as build | ||
WORKDIR /app | ||
COPY package.json ./ | ||
COPY yarn.lock ./ | ||
RUN yarn install --pure-lockfile | ||
COPY . . | ||
RUN yarn set version stable | ||
RUN yarn install --frozen-lockfile | ||
RUN yarn run build | ||
RUN yarn build-storybook -o dist/storybook | ||
|
||
# Pulled March 21, 2023 | ||
FROM nginx@sha256:aa0afebbb3cfa473099a62c4b32e9b3fb73ed23f2a75a65ce1d4b4f55a5c2ef2 | ||
COPY nginx-default.conf /etc/nginx/conf.d/default.conf | ||
COPY --from=0 /app/dist /usr/share/nginx/html | ||
COPY --from=build /app/dist /usr/share/nginx/html |
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 |
---|---|---|
|
@@ -35,6 +35,7 @@ | |
"stylis-plugin-rtl": "^2.1.1", | ||
"typescript": "^5.2.2", | ||
"underscore.string": "^3.3.6", | ||
"use-konami": "^1.0.1", | ||
"usehooks-ts": "^2.9.1", | ||
"vite": "^4.4.9", | ||
"vite-plugin-svgr": "^4.1.0", | ||
|
@@ -104,5 +105,6 @@ | |
"prettier": "^2.7.1", | ||
"storybook": "^7.5.3", | ||
"vitest": "^0.34.6" | ||
} | ||
}, | ||
"packageManager": "[email protected]" | ||
} |
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
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
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
Oops, something went wrong.