Skip to content

build(deps): bump actions/add-to-project from 0.6.1 to 1.0.0 #523

build(deps): bump actions/add-to-project from 0.6.1 to 1.0.0

build(deps): bump actions/add-to-project from 0.6.1 to 1.0.0 #523

Workflow file for this run

name: Lint
on:
pull_request:
branches:
- main
push:
branches:
- main
workflow_call:
workflow_dispatch:
jobs:
lint-commits:
runs-on: ubuntu-22.04
if: github.actor != 'dependabot[bot]'
steps:
- name: Check out repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Check commits
uses: wagoid/commitlint-github-action@v5
lint-markdown:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Lint markdown files
uses: avto-dev/[email protected]
with:
args: "./*.md"
ignore: "./CHANGELOG.md"
lint-yaml:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Lint yaml files
uses: ibiqlik/[email protected]
with:
file_or_dir: ./*.yml ./.github/**/*.yml
lint-ts:
runs-on: ubuntu-22.04
steps:
- name: Check out repository
uses: actions/checkout@v4
- name: Setup node environment (for building)
uses: actions/setup-node@v4
with:
node-version: 20.2
- name: Fetch dependencies
run: |
yarn
- name: typescript style
run: |
yarn format-check
- name: Lint typescript
run: |
yarn lint