Skip to content

Update dependency vite to v4.4.9 (#653) #1912

Update dependency vite to v4.4.9 (#653)

Update dependency vite to v4.4.9 (#653) #1912

Workflow file for this run

name: ci
on:
push:
branches:
- main
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: BeeeQueue/setup-node@corepack
with:
node-version: 18
corepack: true
- name: find pnpm cache path
id: cache
run: echo "path=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.cache.outputs.path }}
key: v1-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
v1-pnpm-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm nuxi prepare
- run: pnpm lint --format compact
env:
NODE_OPTIONS: "--max-old-space-size=8192"
typecheck:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: BeeeQueue/setup-node@corepack
with:
node-version: 18
corepack: true
- name: find pnpm cache path
id: cache
run: echo "path=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.cache.outputs.path }}
key: v1-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
v1-pnpm-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm typecheck
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: BeeeQueue/setup-node@corepack
with:
node-version: 18
corepack: true
- name: find pnpm cache path
id: cache
run: echo "path=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
with:
path: ${{ steps.cache.outputs.path }}
key: v1-pnpm-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
v1-pnpm-
- name: Install dependencies
run: pnpm install --frozen-lockfile
- run: pnpm build