Skip to content

Create admin in db from CLI #469

Create admin in db from CLI

Create admin in db from CLI #469

Workflow file for this run

name: SvelteKit
on:
push: { branches: [master] }
pull_request:
branches: [ "*" ]
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Check out 🚚
uses: actions/checkout@v3
- name: Extract frontend 🚜
run: |
shopt -s extglob
shopt -s dotglob
rm -r !(frontend)/
mv frontend/* ./
- name: Install pnpm 📦
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup NodeJS ⚒️
uses: actions/setup-node@v3
with:
node-version: 20
cache: "pnpm"
- name: Install dependencies 🚀
run: pnpm install
- name: ESLint ✔️
run: pnpm lint
- name: Build 🔨
run: pnpm run build