Skip to content

Commit

Permalink
build(github-actions): add github actions workflows
Browse files Browse the repository at this point in the history
  • Loading branch information
Rami-init committed Feb 23, 2024
1 parent 2fb21ad commit c7d13af
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions .github/workflows/code-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
node-version: 20.x

- name: Install dependencies
run: pnpm install
run: pnpm install --lockfile-only # Install only listed dependencies and lock them

- name: Check linting
run: pnpm run lint
Expand All @@ -31,7 +31,7 @@ jobs:
node-version: 20.x

- name: Install dependencies
run: pnpm install
run: pnpm install --lockfile-only # Install only listed dependencies and lock them

- name: Check format
run: pnpm run format:check
Expand All @@ -47,7 +47,7 @@ jobs:
node-version: 20.x

- name: Install dependencies
run: pnpm install
run: pnpm install --lockfile-only # Install only listed dependencies and lock them

- name: Check types
run: pnpm run typecheck

0 comments on commit c7d13af

Please sign in to comment.