Skip to content

add Object actions #1652

add Object actions

add Object actions #1652

Workflow file for this run

name: Lint
on:
pull_request:
push:
branches:
- master
paths:
- actions
- events
- extensions
- sharder
jobs:
lint:
name: ESLint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Setup Node
uses: actions/setup-node@v2
with:
cache: npm
node-version: 16
- name: Install dependencies
run: npm ci
- name: Run ESLint
run: npm run lint
- name: Run Prettier
run: npm run prettier:check