Skip to content

Commit

Permalink
Fixes deploy: missing plugin map missing import; calendar component; …
Browse files Browse the repository at this point in the history
…and other minor fixes (#9632)
  • Loading branch information
rithviknishad authored Jan 1, 2025
1 parent 4e9f5fb commit 3a9c7fe
Show file tree
Hide file tree
Showing 11 changed files with 99 additions and 95 deletions.
10 changes: 0 additions & 10 deletions .github/workflows/cypress.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,6 @@ jobs:
- name: Build ⚙️
run: npm run build

- name: Install Specific Chrome Version
run: |
sudo apt-get install -y wget
sudo wget -q https://dl.google.com/linux/direct/google-chrome-stable_current_amd64.deb
sudo apt-get install ./google-chrome-stable_current_amd64.deb
- name: Cypress run for Non-Forked PRs 🥬
if: steps.pr_origin.outputs.is_forked == 'false'
uses: cypress-io/github-action@v5
Expand All @@ -53,10 +47,8 @@ jobs:
start: "npx vite preview --host"
wait-on: "http://localhost:4000"
wait-on-timeout: 300
browser: chrome
record: true
parallel: true
group: "UI-Chrome"
env:
CYPRESS_RECORD_KEY: ${{ secrets.CYPRESS_RECORD_KEY }}
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand All @@ -73,10 +65,8 @@ jobs:
start: "npx vite preview --host"
wait-on: "http://localhost:4000"
wait-on-timeout: 300
browser: chrome
record: true
parallel: true
group: "UI-Chrome"
env:
CYPRESS_SPLIT_TESTS: "true"
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
Expand Down
4 changes: 0 additions & 4 deletions .github/workflows/deploy.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -54,10 +54,6 @@ jobs:
cache-from: type=local,src=/tmp/.buildx-cache
cache-to: type=local,mode=max,dest=/tmp/.buildx-cache-new

- name: Run tests
run: |
echo "running tests..."
- name: Move cache
run: |
rm -rf /tmp/.buildx-cache
Expand Down
6 changes: 5 additions & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,14 @@ RUN apt-get update && apt-get install -y git

COPY package.json package-lock.json ./

RUN npm install
RUN npm install --ignore-scripts

COPY . .

RUN npm run postinstall

RUN npm run setup

RUN npm run build


Expand Down
Loading

0 comments on commit 3a9c7fe

Please sign in to comment.