Skip to content

πŸ“š Bump @vitejs/plugin-react-swc in the dependencies group #60

πŸ“š Bump @vitejs/plugin-react-swc in the dependencies group

πŸ“š Bump @vitejs/plugin-react-swc in the dependencies group #60

Workflow file for this run

name: "Publish"
on:
push:
branches: [ main ]
permissions:
contents: write
jobs:
build:
runs-on: ubuntu-latest
name: Deploy the latest main version to Github pages.
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: '21'
cache: 'npm'
- name: Cache dependencies
uses: actions/cache@v4
with:
path: ~/.npm
key: npm-${{ hashFiles('package-lock.json') }}
restore-keys: npm-
- name: Install dependencies
run: npm ci
- name: Run build
run: npm run build
env:
VITE_CESIUM_TOKEN: ${{ secrets.VITE_CESIUM_TOKEN }}
- name: Deploy πŸš€
uses: JamesIves/github-pages-deploy-action@v4
with:
folder: build