Skip to content

docs: update docs for adding few github badges, minor changes #14

docs: update docs for adding few github badges, minor changes

docs: update docs for adding few github badges, minor changes #14

Workflow file for this run

name: Xarvis CLI
on:
push:
branches:
- main
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: 📚 Git Checkout
uses: actions/checkout@v4
- name: 🚀 Setup Node
uses: actions/setup-node@v3
with:
node-version: '20.x'
- name: 🚧 Install Dependencies
run: npm install
- name: 🎯 Check Formatting
run: npm run lint
- name: ⚒️ Build
run: npm run build --if-present
- name: 🧪 Run tests
run: npm run test