This repository has been archived by the owner on Nov 18, 2024. It is now read-only.
🚑 hot fix (landing padding, scope file and typo) #296
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: ESLint | |
on: | |
push: | |
branches-ignore: | |
- "main" | |
- "dev" | |
pull_request: | |
workflow_dispatch: | |
jobs: | |
eslint: | |
name: Eslint running | |
runs-on: ubuntu-22.04 | |
steps: | |
- name: Checkout the repository | |
uses: actions/checkout@v4 | |
- name: Setup Node.js 20 | |
uses: actions/setup-node@v4 | |
with: | |
node-version: 20 | |
cache: 'yarn' | |
- name: Install dependencies | |
run: yarn install | |
- name: Eslint | |
run: yarn lint --no-cache |