mirror of
https://github.com/danbulant/Portfolio
synced 2026-06-17 13:31:12 +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:
|
||||
- name: Check out 🚚
|
||||
uses: actions/checkout@v3
|
||||
|
||||
- name: Extract frontend 🚜
|
||||
run: |
|
||||
shopt -s extglob
|
||||
rm -r !(frontend)/
|
||||
mv frontend/* ./
|
||||
|
||||
- name: Install pnpm 📦
|
||||
uses: pnpm/action-setup@v2
|
||||
|
|
@ -27,9 +33,7 @@ jobs:
|
|||
|
||||
- name: Install dependencies 🚀
|
||||
run: pnpm install
|
||||
working-directory: frontend
|
||||
|
||||
- name: Build 🔨
|
||||
run: pnpm run build
|
||||
working-directory: frontend
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue