Update workflows

This commit is contained in:
space-nuko
2023-05-04 22:14:31 -05:00
parent b339c8e713
commit 60013d3dcf
2 changed files with 65 additions and 1 deletions

View File

@@ -1,7 +1,9 @@
name: Build and Publish name: Build and Publish
on: on:
- push push:
branches:
- master
jobs: jobs:
build_and_publish: build_and_publish:

62
.github/workflows/build.yml vendored Normal file
View File

@@ -0,0 +1,62 @@
name: Build
on:
pull_request:
branches:
- master
jobs:
build_and_publish:
name: Build
runs-on: ubuntu-latest
strategy:
fail-fast: false
steps:
- name: Checkout
uses: actions/checkout@v3
with:
submodules: 'recursive'
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 18
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7.26
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
store_path=$(pnpm store path | tr '\n' ' ')
echo "STORE_PATH=$store_path" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
with:
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Build
run: |
pnpm build:css
pnpm build
- uses: actions/upload-artifact@v3
with:
name: ComfyBox-dist
path: dist/
if-no-files-found: error # 'warn' or 'ignore' are also available, defaults to `warn`