Skip to content

Commit 91b0748

Browse files
committed
Fix lint checks
1 parent bc986a7 commit 91b0748

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

.github/workflows/ci.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,6 +17,6 @@ jobs:
1717
runs-on: ubuntu-latest
1818
steps:
1919
- uses: actions/checkout@v2
20-
- run: npm install
21-
- run: npm run prettier-check
22-
- run: npm run eslint
20+
- run: yarn install
21+
- run: yarn run prettier-check
22+
- run: yarn run eslint

.github/workflows/pr-auditor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
name: pr-auditor
22
on:
33
pull_request:
4-
types: [ closed, edited, opened ]
4+
types: [closed, edited, opened]
55

66
jobs:
77
run:

.prettierignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,4 @@
11
dist
22
node_modules
3+
src/lsif.ts
4+
snapshots/output

CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
## LSIF Node
22

33
### v0.1.0 (2022/02/25 15:43 +00:00)
4+
45
- [#6](https://github.com/sourcegraph/lsif-typescript/pull/6) Merge pull request #6 from olafurpg/release (@olafurpg)
56
- [#4](https://github.com/sourcegraph/lsif-typescript/pull/4) Merge pull request #4 from sourcegraph/add-pr-auditor-and-test-plan (@sourcegraph)
6-
- [#1](https://github.com/sourcegraph/lsif-typescript/pull/1) Merge pull request #1 from olafurpg/new-start (@olafurpg)
7+
- [#1](https://github.com/sourcegraph/lsif-typescript/pull/1) Merge pull request #1 from olafurpg/new-start (@olafurpg)

0 commit comments

Comments
 (0)