Skip to content

Commit

Permalink
ci: add lint job
Browse files Browse the repository at this point in the history
  • Loading branch information
alxndrsn committed Oct 11, 2023
1 parent b1a8947 commit f5f4309
Showing 1 changed file with 14 additions and 0 deletions.
14 changes: 14 additions & 0 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,21 @@ permissions:
contents: read

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
with:
persist-credentials: false
- name: Setup node
uses: actions/setup-node@v3
with:
node-version: 18
cache: yarn
- run: yarn install
- run: yarn lint
build:
needs: lint
runs-on: ubuntu-latest
services:
postgres:
Expand Down

0 comments on commit f5f4309

Please sign in to comment.