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

refactor with bg and animate in #149

refactor with bg and animate in

refactor with bg and animate in #149

Workflow file for this run

name: Lint
on:
# Trigger the workflow on pull request
pull_request_target:
branches:
- main
- dev
permissions:
checks: write
jobs:
run-linters:
name: Run linters
runs-on: ubuntu-latest
steps:
- name: Check out Git repository
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v1
with:
node-version: 18
# ESLint and Prettier must be in `package.json`
- name: Install Node.js dependencies
run: npm ci
- name: Run linters
uses: wearerequired/lint-action@v2
with:
eslint: true
eslint_args: --ignore-path ./.gitignore .
eslint_extensions: js,ts,tsx
prettier: true
prettier_args: --ignore-path ./.prettierignore .