-
Notifications
You must be signed in to change notification settings - Fork 9
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #1132 from navikt/cleanup
Cleanup
- Loading branch information
Showing
197 changed files
with
1,516 additions
and
6,711 deletions.
There are no files selected for viewing
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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
paths: | ||
- apps/backend | ||
- apps/frontend-2 | ||
- apps/frontend | ||
- apps/frackend |
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
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,32 @@ | ||
name: "verify: frackend" | ||
|
||
on: | ||
pull_request: | ||
branches: | ||
- 'main' | ||
paths: | ||
- 'apps/frackend/**' | ||
- '.github/*/verify-frackend.yaml' | ||
|
||
jobs: | ||
verify: | ||
name: Verify there are no lint or typescript errors | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/[email protected] | ||
- uses: actions/setup-node@v3 | ||
with: | ||
node-version: '18' | ||
cache: 'npm' | ||
cache-dependency-path: apps/frackend | ||
- name: Install dependencies | ||
working-directory: apps/frackend | ||
run: npm ci | ||
|
||
- name: Run ESLint | ||
working-directory: apps/frackend | ||
run: npm run lint | ||
|
||
- name: Check for typescript errors | ||
working-directory: apps/frackend | ||
run: npm run check-types |
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
Oops, something went wrong.