mirror of
https://github.com/danbulant/Portfolio
synced 2026-07-05 11:00:56 +00:00
devops: fix ci
This commit is contained in:
parent
0a2960d031
commit
d8324002a9
1 changed files with 6 additions and 2 deletions
8
.github/workflows/sveltekit.yml
vendored
8
.github/workflows/sveltekit.yml
vendored
|
|
@ -13,6 +13,12 @@ jobs:
|
||||||
steps:
|
steps:
|
||||||
- name: Check out 🚚
|
- name: Check out 🚚
|
||||||
uses: actions/checkout@v3
|
uses: actions/checkout@v3
|
||||||
|
|
||||||
|
- name: Extract frontend 🚜
|
||||||
|
run: |
|
||||||
|
shopt -s extglob
|
||||||
|
rm -r !(frontend)/
|
||||||
|
mv frontend/* ./
|
||||||
|
|
||||||
- name: Install pnpm 📦
|
- name: Install pnpm 📦
|
||||||
uses: pnpm/action-setup@v2
|
uses: pnpm/action-setup@v2
|
||||||
|
|
@ -27,9 +33,7 @@ jobs:
|
||||||
|
|
||||||
- name: Install dependencies 🚀
|
- name: Install dependencies 🚀
|
||||||
run: pnpm install
|
run: pnpm install
|
||||||
working-directory: frontend
|
|
||||||
|
|
||||||
- name: Build 🔨
|
- name: Build 🔨
|
||||||
run: pnpm run build
|
run: pnpm run build
|
||||||
working-directory: frontend
|
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue