Skip to content

feat: export approve and execute function #850

feat: export approve and execute function

feat: export approve and execute function #850

Workflow file for this run

name: Linting
on: pull_request
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
# Install Node.js and its dependencies
- name: Setup tools
uses: ./.github/actions/setup-tools
with:
install-nodejs: 'true'
- name: Lint
run: npm run lint
- name: Prettier
run: npm run prettier
- name: Check for changes
run: |
if [ -n "$(git status --porcelain)" ]; then
echo Following files are changed by prettier...
git status
echo Changes:
git diff
exit 1;
else
exit 0;
fi