Skip to content

Features: Max number of messages per file #125

Features: Max number of messages per file

Features: Max number of messages per file #125

Workflow file for this run

name: Continuous Integration
on:
push:
branches:
- master
pull_request:
jobs:
Linting:
name: Linting
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
- name: Add problem matcher
run: echo "::add-matcher::.github/problemMatchers/eslint.json"
- name: Use Node.js v16
uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3
with:
node-version: 16
- name: Install Dependencies
run: npm install
- name: Run ESLint
run: npm run lint --fix=false
TypeCheck:
name: TypeCheck
runs-on: ubuntu-latest
steps:
- name: Checkout Project
uses: actions/checkout@2541b1294d2704b0964813337f33b291d3f8596b # tag=v3
- name: Add problem matcher
run: echo "::add-matcher::.github/problemMatchers/tsc.json"
- name: Use Node.js v16
uses: actions/setup-node@2fddd8803e2f5c9604345a0b591c3020ee971a93 # tag=v3
with:
node-version: 16
- name: Install Dependencies
run: npm install
- name: Validate Types
run: npm run typecheck
# - name: Run Tests
# run: npm run test