Skip to content

Commit

Permalink
🎨 chore: Still trying to appease the linter
Browse files Browse the repository at this point in the history
  • Loading branch information
joebobmiles committed Jul 8, 2021
1 parent cde63d0 commit dccc2a0
Show file tree
Hide file tree
Showing 2 changed files with 17 additions and 2 deletions.
15 changes: 15 additions & 0 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,21 @@ jobs:

- run: npx commitlint --from HEAD~1 --to HEAD --verbose

eslint:
name: Lint code
runs-on: ubuntu-latest

steps:
- uses: action/checkout@v2

- uses: action/setup-node@v2
with:
node-version: 15

- run: npm ci

- run: npx eslint

test:
name: Run tests
runs-on: ubuntu-latest
Expand Down
4 changes: 2 additions & 2 deletions jest.config.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
import type { Config } from "@jest/types";
import type { Config, } from "@jest/types";

const config: Config.InitialOptions =
{
transform: {
"transform": {
".tsx?": "ts-jest",
},
};
Expand Down

0 comments on commit dccc2a0

Please sign in to comment.