Skip to content

Commit

Permalink
ci: add lint job
Browse files Browse the repository at this point in the history
  • Loading branch information
tomaisthorpe committed Jul 22, 2023
1 parent 97fa977 commit 8d49b0d
Showing 1 changed file with 9 additions and 1 deletion.
10 changes: 9 additions & 1 deletion .github/workflows/ci.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,21 @@ on:
pull_request:

jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- run: npm ci

- run: npx nx run-many -t lint
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v2
with:
fetch-depth: 0
- uses: nrwl/nx-set-shas@v3
- run: npm ci

- run: npx nx build ted
Expand Down

0 comments on commit 8d49b0d

Please sign in to comment.