Skip to content
This repository has been archived by the owner on Jan 8, 2024. It is now read-only.

chore(deps): update dependency vite-ssg to ^0.23.0 #1937

chore(deps): update dependency vite-ssg to ^0.23.0

chore(deps): update dependency vite-ssg to ^0.23.0 #1937

Workflow file for this run

name: Server CI
on:
# push:
# branches:
# - main
# pull_request:
# branches:
# - main
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [16.x]
steps:
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Cache node modules
uses: actions/cache@v3
env:
cache-name: _cache_npm_node16
with:
path: ~/.npm
key: ${{ runner.os }}-build-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }}
restore-keys: |
${{ runner.os }}-build-${{ env.cache-name }}-
${{ runner.os }}-build-
${{ runner.os }}-
- name: Transpile
run: |
npm install
npm install @google/clasp -g
npm run build
env:
CI: true