Skip to content

update README for response type and minor tidy ups for consistency #60

update README for response type and minor tidy ups for consistency

update README for response type and minor tidy ups for consistency #60

Workflow file for this run

name: Lint Check
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: Install dependencies
run: npm install # npm install instead of npm ci is used to prevent unsupported platform errors due to the fsevents sub-dependency --no-optional
- name: Run lint check
run: npm run lint:ci
- name: Upload ESLint report
if: always()
uses: actions/upload-artifact@3cea5372237819ed00197afe530f5a7ea3e805c8 # v3.1.0
with:
name: eslint-report
path: ./eslint-report.json