Skip to content

Update README.md

Update README.md #1975

Workflow file for this run

name: Lint & Build PR
on:
pull_request:
types: [opened, synchronize]
# TODO: ignore this after setting up a separate task to link markdown
# and to ignore eslint/prettier issues in examples
# paths-ignore:
# - '**.md'
# - 'examples'
# - '!examples/monaco-graphql-webpack'
jobs:
lint:
name: Lint
runs-on: ubuntu-20.04
steps:
- name: Checkout Code
uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 16
cache: 'yarn'
- run: yarn install --frozen-lockfile --immutable
- name: TypeScript Build
run: yarn build
- name: ESLint
run: yarn lint
- name: Prettier Check
run: yarn pretty-check