Skip to content

Commit

Permalink
update working directory of ci
Browse files Browse the repository at this point in the history
  • Loading branch information
rajdip-b committed Mar 20, 2024
1 parent e98d1e4 commit 7c619f7
Showing 1 changed file with 8 additions and 3 deletions.
11 changes: 8 additions & 3 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,9 @@ name: CI
on:
push:
branches:
- "!main"
- "!develop"
- "*"
- '!main'
- '!develop'
- '*'

jobs:
lint:
Expand All @@ -19,8 +19,10 @@ jobs:
- name: Install pnpm
run: npm install -g pnpm
- name: Install dependencies
working-directory: ./packages
run: pnpm install
- name: Run Prettier (Pre-commit or in workflow)
working-directory: ./packages
run: pnpm lint

test:
Expand All @@ -36,8 +38,11 @@ jobs:
- name: Install dependencies
run: pnpm install
- name: Run ESLint
working-directory: ./packages
run: pnpm lint
- name: Run unit tests
working-directory: ./packages
run: pnpm run test:unit
- name: Run e2e tests
working-directory: ./packages
run: pnpm run test:e2e

0 comments on commit 7c619f7

Please sign in to comment.