Skip to content
This repository has been archived by the owner on May 7, 2024. It is now read-only.

Version bump

Version bump #73

Workflow file for this run

name: ESLint Fix on Push to Master
on:
push:
branches:
- master
jobs:
eslint-fix:
name: Fix ESLint Issues
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Install ESLint
run: |
npm install --save-dev [email protected]
npm install --save-dev @microsoft/[email protected]
- name: Run ESLint with --fix
run: npx eslint . --config .eslintrc.json --ext .js,.jsx,.ts,.tsx --fix
continue-on-error: true
- name: Commit files
run: |
git config --local user.email "github-actions[bot]@users.noreply.github.com"
git config --local user.name "github-actions[bot]"
git commit -a -m "Fix ESLint issues"
continue-on-error: true
- name: Push changes
uses: ad-m/github-push-action@29f05e01bb17e6f28228b47437e03a7b69e1f9ef
with:
branch: ${{ github.ref_name }}
github_token: ${{ secrets.PAT }}
continue-on-error: true