fix: update QBO Journal Entry preview screenshots #5084
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: TypeScript Lint Check | |
on: | |
pull_request: | |
types: [assigned, opened, synchronize, reopened] | |
jobs: | |
lint: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v1 | |
- name: TypeScript Lint GitHub Action | |
uses: actions/setup-node@v1 | |
with: | |
node-version: 22 | |
- name: Install dependencies | |
run: npm install | |
- name: Lint | |
run: npm run lint |