Skip to content

Commit bd5e960

Browse files
author
alxndrsn
committed
ci: add lint job
1 parent 92f141f commit bd5e960

File tree

1 file changed

+14
-0
lines changed

1 file changed

+14
-0
lines changed

.github/workflows/ci.yml

Lines changed: 14 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,21 @@ permissions:
66
contents: read
77

88
jobs:
9+
lint:
10+
runs-on: ubuntu-latest
11+
steps:
12+
- uses: actions/checkout@v3
13+
with:
14+
persist-credentials: false
15+
- name: Setup node
16+
uses: actions/setup-node@v3
17+
with:
18+
node-version: 18
19+
cache: yarn
20+
- run: yarn install
21+
- run: yarn lint
922
build:
23+
needs: lint
1024
runs-on: ubuntu-latest
1125
services:
1226
postgres:

0 commit comments

Comments
 (0)