Skip to content

style: do not check style on version.ts #586

style: do not check style on version.ts

style: do not check style on version.ts #586

Workflow file for this run

name: CI
on: [push]
jobs:
linting_and_testing:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
- name: Use Node.js
uses: actions/setup-node@v2
with:
node-version: '16.x'
- name: Install dependencies
run: npm install
- name: Check Linter bugs
run: npm run lint
- name: Check Codestyles errors
run: npm run format
- name: Run unit tests
run: npm run test