Skip to content

docs: add bottom section of the README.md #25

docs: add bottom section of the README.md

docs: add bottom section of the README.md #25

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