Skip to content

Commit

Permalink
chore(frontend): add lint
Browse files Browse the repository at this point in the history
  • Loading branch information
Vibes-INS committed Jul 12, 2024
1 parent ba8272a commit a5c8fb1
Showing 1 changed file with 26 additions and 0 deletions.
26 changes: 26 additions & 0 deletions .github/workflows/frontend-lint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,26 @@
name: Linter

on: [pull_request, push]


jobs:
build:
runs-on: ubuntu-latest

steps:
- name: Checkout code
uses: actions/checkout@v2
with:
submodules: 'true'

- uses: actions/checkout@v2
- uses: actions/setup-node@v2
with:
node-version: '20'

- uses: pnpm/action-setup@v4
- name: Install dependency
run: pnpm install

- name: Build
run: npm run lint

0 comments on commit a5c8fb1

Please sign in to comment.