Skip to content

Commit

Permalink
ci(build): new build test
Browse files Browse the repository at this point in the history
  • Loading branch information
PleahMaCaka committed May 26, 2024
1 parent 4416aa7 commit 34d7ebc
Showing 1 changed file with 56 additions and 0 deletions.
56 changes: 56 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
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"

0 comments on commit 34d7ebc

Please sign in to comment.