Skip to content

Commit

Permalink
change work dir in ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
OGreeni committed Dec 4, 2023
1 parent d775502 commit 98dadb2
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 24 deletions.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# This workflow builds the app, runs ESLint, and checks for TypeScript compilation errors.
name: CI
name: Frontend-CI
on: push
jobs:
build-lint-tsc:
Expand All @@ -19,7 +19,10 @@ jobs:
cache: 'pnpm'
- name: Install dependencies
run: pnpm install
working-directory: ./frontend
- name: Run ESLint
run: pnpm lint
working-directory: ./frontend
- name: Run TypeScript compiler
run: pnpm tsc --noEmit
working-directory: ./frontend
45 changes: 22 additions & 23 deletions .idea/workspace.xml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit 98dadb2

Please sign in to comment.