Skip to content

MichaelHorwitz at pull_request event #347

MichaelHorwitz at pull_request event

MichaelHorwitz at pull_request event #347

Workflow file for this run

name: Linting
run-name: ${{ github.actor }} at ${{ github.event_name }} event
on:
workflow_dispatch:
# fork:
pull_request:
branches:
- release
- dev
- main
types:
- opened
- reopened
- edited
- synchronize
jobs:
linting:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node.js environment
uses: actions/setup-node@v4
with:
node-version: '18.20.3'
- name: Install dependencies
run: |
cd frontend
npm install -g yarn
yarn add [email protected]
- name: Run linter
run: |
cd frontend
yarn lint