Update Home.tsx #228
This file contains hidden or 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
| name: Deploy to GitHub Pages | |
| on: | |
| push: | |
| branches: [main] | |
| pull_request: | |
| branches: [main] | |
| workflow_dispatch: | |
| permissions: | |
| contents: write | |
| concurrency: | |
| group: 'deploy' | |
| cancel-in-progress: true | |
| jobs: | |
| deploy: | |
| environment: | |
| name: github-pages | |
| url: https://lamda-uai.github.io | |
| runs-on: ubuntu-latest # updated ubuntu version | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@v3 | |
| with: | |
| fetch-depth: 0 | |
| - name: Setup Node.js | |
| uses: actions/setup-node@v2.5.1 | |
| with: | |
| node-version: 18.x | |
| - name: Clean and install dependencies | |
| run: | | |
| rm -rf node_modules | |
| rm -f package-lock.json | |
| touch .npmrc | |
| echo "legacy-peer-deps=true" >> .npmrc | |
| echo "strict-peer-dependencies=false" >> .npmrc | |
| npm install --force | |
| npm install --save --force react@18.2.0 react-dom@18.2.0 @types/react@18.2.0 @types/react-dom@18.2.0 | |
| npm install --save-dev --force ajv@^8.0.0 ajv-keywords@^5.0.0 | |
| - name: Build | |
| env: | |
| CI: false | |
| run: | | |
| npm run build | |
| - name: Deploy to GitHub Pages | |
| uses: peaceiris/actions-gh-pages@v3 | |
| with: | |
| github_token: ${{ secrets.GITHUB_TOKEN }} | |
| publish_dir: ./build |