Skip to content

fkl

fkl #29

Workflow file for this run

name: 🚀 Update
on:
push:
branches:
- development
jobs:
update:
name: 🚀 Update
runs-on: ubuntu-latest
steps:
- name: Check current directory
run: |
pwd
ls -lah
- name: 📂 Checkout
uses: actions/checkout@v4
with:
fetch-depth: 50
- name: 🛠 Setup node
uses: actions/setup-node@v4
with:
node-version: 20
- name: 📥 Download deps
uses: bahmutov/npm-install@v1
- name: 🚀 install tsx
run: npm install tsx -G
- name: Update DB
run: npm run syncdbmdx
env:
DATABASE_URL: ${{ secrets.DATABASE_URL }}