Skip to content

Commit

Permalink
Merge branch 'main' into #73
Browse files Browse the repository at this point in the history
  • Loading branch information
raralala14 authored Oct 9, 2024
2 parents f4ef220 + ae97196 commit 49e012b
Show file tree
Hide file tree
Showing 7 changed files with 777 additions and 9 deletions.
31 changes: 31 additions & 0 deletions .github/workflows/lint.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,31 @@
# .github/workflows/build.yml

name: Lint

on:
push:
branches:
- '*'
pull_request:
branches:
- '*'

jobs:
lint:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v3

- name: Set up Node.js
uses: actions/setup-node@v3
with:
node-version: '20.11.1'

- name: Install dependencies
run: npm install

- name: Run ESLint

run: npm run lint
Loading

0 comments on commit 49e012b

Please sign in to comment.