Skip to content

build(deps-dev): bump @types/node from 20.4.5 to 20.5.7 #99

build(deps-dev): bump @types/node from 20.4.5 to 20.5.7

build(deps-dev): bump @types/node from 20.4.5 to 20.5.7 #99

Workflow file for this run

# This is a basic workflow to help you get started with Actions
name: Creating typescript Indexes
on:
push:
branches: [ main ]
pull_request:
branches: [ main ]
workflow_dispatch:
jobs:
build:
runs-on: ubuntu-latest
name: 🛠️ Build Indexes
steps:
- name: Checkout Repository
uses: actions/checkout@v3
- uses: DaanV2/Typescript-Action-Create-Indexes@latest
with:
folder: ${{github.workspace}}/src/Lib
- name: ✏️ Commit changes
continue-on-error: true
run: |
cd ${{github.workspace}}
git config --global user.email "[email protected]"
git config --global user.name "Orbi-bot"
git add .
git commit -m "auto: Generated typescript includes"
git push