Skip to content

support the latest version 2.1.1 schema changes to the server side implementation #21

support the latest version 2.1.1 schema changes to the server side implementation

support the latest version 2.1.1 schema changes to the server side implementation #21

Workflow file for this run

name: Run eslint
on:
pull_request:
branches:
- develop
jobs:
eslint:
name: Run eslint
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install dependencies
run: npm install
working-directory: server
- name: Run ESLint
run: ./node_modules/.bin/eslint .
working-directory: server