Skip to content

Commit 140e261

Browse files
committed
fix: added linter action
1 parent 10cf6ed commit 140e261

File tree

5 files changed

+5647
-4
lines changed

5 files changed

+5647
-4
lines changed

.github/workflows/release.yml

Lines changed: 16 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,24 @@ jobs:
1616
node-version: '14.x'
1717
- run: npm install
1818
- run: npm run test
19-
19+
20+
linter:
21+
name: Run linter
22+
runs-on: ubuntu-latest
23+
24+
steps:
25+
- name: Check out Git repository
26+
uses: actions/checkout@v2
27+
28+
- name: Set up Node.js
29+
uses: actions/setup-node@v1
30+
with:
31+
node-version: 12
32+
- run: npm install && npm run lint
33+
2034
tag:
2135
runs-on: ubuntu-latest
22-
needs: [ test ]
36+
needs: [ linter ]
2337
steps:
2438
- uses: actions/checkout@v3
2539
- name: Bump version and push tag

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,6 @@ test-filtered.json
1414

1515
# Dependency directories
1616
node_modules
17-
package-lock.json
1817

1918
# Coverage directories
2019
coverage

.talismanrc

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
fileignoreconfig:
2+
- filename: package-lock.json
3+
checksum: 75ec58722bd3b206e357df7a91dbf0077fb3595780c72ce9ed213956d9477e8b
4+
version: ""

0 commit comments

Comments
 (0)