Skip to content

Commit 66af7a4

Browse files
committed
Chore: Run yarn lint
1 parent 5df7454 commit 66af7a4

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

.github/workflows/lint.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
name: Lint frontend
2+
3+
on: [push, pull_request]
4+
5+
jobs:
6+
lint:
7+
runs-on: ubuntu-latest
8+
steps:
9+
- uses: actions/checkout@v4
10+
- uses: actions/setup-node@v3
11+
with:
12+
node-version-file: '.nvrmc'
13+
cache: 'yarn'
14+
- run: yarn install
15+
- run: yarn lint

0 commit comments

Comments
 (0)