Skip to content

Switch CRA to Vite, upgrade and switch up dependencies #29

Switch CRA to Vite, upgrade and switch up dependencies

Switch CRA to Vite, upgrade and switch up dependencies #29

Workflow file for this run

name: CI
on:
push:
branches: [master]
pull_request:
branches: [master]
# permissions:
# contents: read
# pages: write
# id-token: write
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: "16.x"
cache: yarn
- run: yarn
- run: yarn build --base=/d2d/
# - name: Upload artifact
# uses: actions/upload-pages-artifact@v1
# with:
# path: dist
#
#deploy:
# environment:
# name: github-pages
# url: ${{ steps.deployment.outputs.page_url }}
# needs: build
# runs-on: ubuntu-latest
# name: Deploy
# steps:
# - name: Deploy to GitHub Pages
# id: deployment
# uses: actions/deploy-pages@v2
# if: ${{ github.event_name == 'push' }}