Skip to content
This repository has been archived by the owner on Sep 24, 2024. It is now read-only.

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.2.0 #19

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.2.0

chore(deps-dev): bump @typescript-eslint/eslint-plugin from 5.62.0 to 6.2.0 #19

Workflow file for this run

---
name: Linting
on:
- pull_request
jobs:
build:
name: Smoke test building
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn install
- run: yarn build
typecheck:
name: Typecheck TypeScript code
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn install
- run: yarn typecheck
prettier:
name: Validate Prettier
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
fetch-depth: 0
ref: ${{ github.head_ref }}
persist-credentials: false
- uses: creyD/prettier_action@v4.3
with:
dry: True
prettier_options: "--check ."
github_token: ${{ secrets.GITHUB_TOKEN }}
eslint:
name: Eslint
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- uses: actions/setup-node@v3
with:
node-version: 18
- run: yarn install
- run: yarn build
- run: yarn lint