Skip to content
This repository was archived by the owner on Dec 5, 2024. It is now read-only.

chore(main): release 2.8.3 #815

chore(main): release 2.8.3

chore(main): release 2.8.3 #815

Workflow file for this run

name: Static checks
on:
pull_request:
push:
branches:
- main
jobs:
static-checks:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- name: Install modules
run: npm ci
- name: TypeScript
run: npm run type:check
- name: ESLint
run: npm run lint:check
- name: Prettier
run: npm run format:check