Skip to content

Update to Functions Contracts v1.3.0 #87

Update to Functions Contracts v1.3.0

Update to Functions Contracts v1.3.0 #87

Workflow file for this run

name: Lint Check
on:
pull_request:
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- name: Set up Node.js
uses: actions/setup-node@b39b52d1213e96004bfcb1c61a8a6fa8ab84f3e8 # v4.0.1
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@a8a3f3ad30e3422c9c7b888a15615d19a852ae32 # v3.1.3
with:
name: eslint-report
path: ./eslint-report.json