Skip to content

chore: add pnpm version #2

chore: add pnpm version

chore: add pnpm version #2

Workflow file for this run

name: "build"
on:
push:
branches:
- '*'
workflow_dispatch:
jobs:
build:
strategy:
matrix:
os: [ ubuntu-latest ]
runs-on: ${{ matrix.os }}
steps:
- name: Checkout
uses: actions/checkout@v3
with:
fetch-depth: 1
- name: Setup Node.js
uses: actions/setup-node@v3
with:
node-version: '22.x'
registry-url: 'https://registry.npmjs.org'
- name: Setup pnpm
uses: pnpm/action-setup@v2
- name: Get pnpm store
id: pnpm-cache
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: "${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}"
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Svelte Check
run: pnpm check
- name: Run lint
run: pnpm lint
- name: Build
run: pnpm build
env:
PUBLIC_SUPABASE_URL: "https://uwu.uwu/"
PUBLIC_SUPABASE_ANON_KEY: "uwu"