-
Notifications
You must be signed in to change notification settings - Fork 39
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix prettier job, add linter job, remove other unecesary jobs
- Loading branch information
1 parent
66094a3
commit be64361
Showing
18 changed files
with
523 additions
and
1,040 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,35 @@ | ||
name: Code Standards Checks | ||
|
||
on: pull_request | ||
|
||
jobs: | ||
linter: | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Set up Node environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: v18.17.1 | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Install dependencies | ||
working-directory: ./apps/connect | ||
run: npm ci | ||
- name: Run prettier | ||
working-directory: ./apps/connect | ||
run: npm run lint | ||
prettier: | ||
runs-on: "ubuntu-latest" | ||
steps: | ||
- name: Set up Node environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: v18.17.1 | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
- name: Install dependencies | ||
working-directory: ./apps/connect | ||
run: npm ci | ||
- name: Run prettier | ||
working-directory: ./apps/connect | ||
run: npm run prettier |
Oops, something went wrong.