diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index b0f23dd..713d8b2 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -18,14 +18,15 @@ jobs: - uses: actions/setup-node@v4 with: node-version: 18 - cache: npm - name: Install dependencies - run: npm ci - working-directory: ./website + run: | + cd website + npm ci - name: Build website - run: npm run build - working-directory: ./website + run: | + cd website + npm run build - name: Upload Build Artifact uses: actions/upload-pages-artifact@v3 diff --git a/website/src/pages/executive_summary.tsx b/website/src/pages/executive_summary.tsx index 21979c5..6299c71 100644 --- a/website/src/pages/executive_summary.tsx +++ b/website/src/pages/executive_summary.tsx @@ -1,8 +1,8 @@ import React from 'react'; import './executive_summary.css'; -import { Layout, Button, CollapseProps, Collapse } from 'antd'; -import { MinusIcon, NewspaperIcon, PlusIcon } from '@heroicons/react/24/outline'; +import { Layout, CollapseProps, Collapse } from 'antd'; +import { MinusIcon, PlusIcon } from '@heroicons/react/24/outline'; const layoutStyle: React.CSSProperties = { display: 'flex', diff --git a/website/src/pages/overall_visualization.tsx b/website/src/pages/overall_visualization.tsx index 9f775ad..34d3c0f 100644 --- a/website/src/pages/overall_visualization.tsx +++ b/website/src/pages/overall_visualization.tsx @@ -2,7 +2,6 @@ import React, { useState } from 'react'; import { CapabilityScores, ModelScore, ModelConfig, EurekaConfig } from '../components/types'; import Highcharts, { SeriesOptionsType } from 'highcharts'; import HighchartsReact from 'highcharts-react-official'; -import HC_more from 'highcharts/highcharts-more'; import { Col, Row } from 'antd'; import Heading from '@theme/Heading';