Skip to content

[break] first commit #1

[break] first commit

[break] first commit #1

Workflow file for this run

name: eslint
on:
# [push]
pull_request:
branches:
- develop
types:
- opened
- edited
- synchronize
jobs:
lint:
runs-on: ubuntu-latest
steps:
- name: set up Node.js
uses: actions/setup-node@v2
with:
node-version: 18
- name: get branch
uses: actions/checkout@v3
with:
fetch-depth: 0
- name: install dependencies
run: npm ci
- name: run eslint
run: npx eslint "**/*.ts"