Skip to content

Commit

Permalink
feat: create linter action
Browse files Browse the repository at this point in the history
  • Loading branch information
gas1cent committed Jan 10, 2024
1 parent c09cc8d commit 3c4335d
Showing 1 changed file with 25 additions and 0 deletions.
25 changes: 25 additions & 0 deletions .github/workflows/lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
name: Lint

on: [push]

jobs:
files:
runs-on: ubuntu-latest

steps:
- name: Check out github repository
uses: actions/checkout@v3
with:
fetch-depth: 1

- name: Install node
uses: actions/setup-node@v4
with:
node-version: 18.x
cache: 'yarn'

- name: Install dependencies
run: yarn --frozen-lockfile

- name: Run linter
run: yarn run lint:check

0 comments on commit 3c4335d

Please sign in to comment.