Skip to content

Commit

Permalink
fut: add linter
Browse files Browse the repository at this point in the history
  • Loading branch information
fulcanelly committed Nov 14, 2024
1 parent 7e11eaa commit d4eeb45
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .github/workflows/linter.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
name: Linter

on:
push:
# branches:
# - main
# pull_request:
# branches:
# - main


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.x' # Specify your Node.js version

- name: Install dependencies
run: yarn install

- name: Run linter
run: yarn lint # Ensure you have a lint script defined in

0 comments on commit d4eeb45

Please sign in to comment.