Skip to content

chore(deps-dev): bump vite from 5.0.11 to 5.0.12 #37

chore(deps-dev): bump vite from 5.0.11 to 5.0.12

chore(deps-dev): bump vite from 5.0.11 to 5.0.12 #37

# This workflow will run tests using node and then publish a package to GitHub Packages when a release is created
# For more information see: https://help.github.com/actions/language-and-framework-guides/publishing-nodejs-packages
name: Check pull request
on:
pull_request:
branches:
- main
env:
TURBO_VERSION: ${{ vars.TURBO_VERSION }}
PNPM_VERSION: ${{ vars.PNPM_VERSION }}
jobs:
check_pull_request:
name: PR Stats
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 2
- name: Setup Node.js environment
uses: actions/setup-node@v3
with:
node-version: 18
registry-url: https://registry.npmjs.org/
# We use week in the turbo cache key to keep the cache from infinitely growing
- id: get-week
run: echo name=WEEK::$(date +%U) >> $GITHUB_OUTPUT
- name: Turbo Cache
id: turbo-cache
uses: actions/cache@v3
with:
path: .turbo
key: turbo-${{ github.job }}-${{ github.ref_name }}-${{ steps.get-week.outputs.WEEK }}-${{ github.sha }}
restore-keys: |
turbo-${{ github.job }}-${{ github.ref_name }}-${{ steps.get-week.outputs.WEEK }}-
turbo-${{ github.job }}-canary-${{ steps.get-week.outputs.WEEK }}-
- name: 馃敟 Installing pnpm
run: |
corepack enable
corepack prepare pnpm@${{ env.PNPM_VERSION }} --activate
- name: Setup TURBO
run: |
npm add -g turbo@${{ env.TURBO_VERSION }}
- name: 馃摝 Install dependencies
run: |
pnpm install --no-frozen-lockfile
- name: 馃敟 generate:icons
run: pnpm turbo run generate:icons
- name: 馃挘 build
run: pnpm turbo run build
- name: 馃敟 bundlesize
run: pnpm bundlesize