Skip to content

Commit

Permalink
chore: fix ci workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
ezeikel committed Jan 8, 2025
1 parent 1f20e4a commit 1e84c83
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 8 deletions.
15 changes: 8 additions & 7 deletions .github/workflows/ci-checks.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -27,25 +27,26 @@ jobs:
uses: actions/setup-node@v4
with:
node-version: 20
cache: "pnpm"

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: latest

- name: Install dependencies
run: pnpm install
run: pnpm install --frozen-lockfile

- name: Type Check
run: pnpm typecheck
- name: Lint
run: pnpm lint

- name: Format Check
- name: Format
run: pnpm format

- name: Lint Check
run: pnpm lint
- name: Typecheck
run: pnpm typecheck

- name: Run Tests
- name: Test
run: pnpm test

- name: Build
Expand Down
3 changes: 2 additions & 1 deletion apps/mobile/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,8 @@
"test": "jest",
"test:watch": "jest --watch",
"test:coverage": "jest --coverage",
"test:e2e": "maestro test ./e2e/*.yaml"
"test:e2e": "maestro test ./e2e/*.yaml",
"build": "echo 'No build step required for mobile app'"
},
"dependencies": {
"@expo/vector-icons": "^14.0.2",
Expand Down

0 comments on commit 1e84c83

Please sign in to comment.