Skip to content

Commit

Permalink
Merge pull request #3 from microsoft/jluey/website
Browse files Browse the repository at this point in the history
updating imports and deployment task
  • Loading branch information
jluey1 authored Sep 11, 2024
2 parents 61d0d3b + 407b2e7 commit 29a719e
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 8 deletions.
11 changes: 6 additions & 5 deletions .github/workflows/deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions website/src/pages/executive_summary.tsx
Original file line number Diff line number Diff line change
@@ -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',
Expand Down
1 change: 0 additions & 1 deletion website/src/pages/overall_visualization.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -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';

Expand Down

0 comments on commit 29a719e

Please sign in to comment.