Skip to content

refactor: event hashes and role extraction strategy [AXE-2477] #432

refactor: event hashes and role extraction strategy [AXE-2477]

refactor: event hashes and role extraction strategy [AXE-2477] #432

Workflow file for this run

name: Linting
on: pull_request
jobs:
lint:
strategy:
matrix:
node-version:
- 18.x
os:
- ubuntu-latest
runs-on: ${{ matrix.os }}
steps:
- uses: actions/checkout@v4
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- name: Install Dependencies
run: npm ci
- 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