Skip to content

AG-29283 Add an option to quickly fix AGLint warnings #80

AG-29283 Add an option to quickly fix AGLint warnings

AG-29283 Add an option to quickly fix AGLint warnings #80

Workflow file for this run

name: Check code
env:
NODE_VERSION: 18
on:
push:
branches:
- master
pull_request:
branches:
- master
jobs:
check_code:
name: Run type checking, linting, and tests
runs-on: ubuntu-latest
steps:
- name: Check out to repository
uses: actions/checkout@v3
- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
cache: yarn
- name: Install dependencies
run: yarn install --frozen-lockfile
- name: Check TypeScript types
run: yarn test:compile
- name: Run markdownlint
run: yarn lint:md
- name: Run ESLint
run: yarn lint:ts
- name: Run Jest tests
run: yarn test