Skip to content

Toggler Mode

Toggler Mode #455

Workflow file for this run

on:
push:
branches:
- vite_newdev
pull_request:
types: [opened, synchronize, reopened]
issues:
types: [opened, reopened]
issue_comment:
types: [created, edited, deleted]
jobs:
eslint:
name: ESLint Check
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v2
- name: Set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18.12.1
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
run: pnpm install
- name: Run ESLint
run: pnpm run lint