Skip to content

Commit 7841b3b

Browse files
authored
Chore: Run yarn lint in CI (#1716)
* Chore: Run yarn lint * Run only on push * Format lint.yml
1 parent 43f2c66 commit 7841b3b

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]
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: '.nvmrc'
13+
cache: 'yarn'
14+
- run: yarn install
15+
- run: yarn lint

0 commit comments

Comments
 (0)