Skip to content

Chips Input (#441) #322

Chips Input (#441)

Chips Input (#441) #322

Workflow file for this run

name: Node.js CI
on:
push:
branches: ['main']
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
# Runs a single command using the runners shell
- name: setup git config
run: |
git config user.name "Sadanand Pai"
git config user.email "[email protected]"
- name: setup deployment
run: |
npm install
npm run unit:test
npm run build
npm run copy-to-docs
git add docs -f
git diff --staged --quiet || (git commit -m "build files - github action" --no-verify && git push)