Skip to content
This repository was archived by the owner on Feb 7, 2023. It is now read-only.

Commit 9674d68

Browse files
author
Jacob
committed
changes per PR discussion moving linting/prettier to same job
1 parent c01c343 commit 9674d68

File tree

1 file changed

+3
-13
lines changed

1 file changed

+3
-13
lines changed

.github/workflows/typechecks.yml

+3-13
Original file line numberDiff line numberDiff line change
@@ -3,19 +3,6 @@ name: Tests, Linter & Typecheck
33
on: pull_request
44

55
jobs:
6-
lint:
7-
name: 'Linting Markdown'
8-
runs-on: ubuntu-latest
9-
steps:
10-
- name: Checkout Repo
11-
uses: actions/checkout@v2
12-
13-
- name: Use Node.js 16.7
14-
uses: actions/setup-node@v2
15-
with:
16-
node-version: 16.7
17-
18-
- run: npm run prettier:md
196
test:
207
name: 'Typechecking'
218
runs-on: ubuntu-latest
@@ -39,5 +26,8 @@ jobs:
3926
*/*/node_modules
4027
key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
4128

29+
- name: Run Prettier
30+
run: npm run prettier:md
31+
4232
- name: Run Type Checking
4333
run: tsc

0 commit comments

Comments
 (0)