Skip to content

Commit

Permalink
ci: update build steps
Browse files Browse the repository at this point in the history
  • Loading branch information
chenasraf committed Nov 24, 2023
1 parent 1b77a13 commit 6a516f1
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
2 changes: 2 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@ jobs:
run: npm i -g pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Tests
run: pnpm test
- name: Build Package
run: pnpm build
# - name: Verify the integrity of provenance attestations and registry signatures for installed dependencies
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/pull_requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,11 @@ jobs:
- uses: actions/setup-node@v1
with:
node-version: '18.x'
- run: npm i -g pnpm
- run: pnpm install --frozen-lockfile
- run: pnpm test
- run: pnpm build
- name: Install PNPM
run: npm i -g pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile
- name: Run Tests
run: pnpm test
- name: Build Package
run: pnpm build

0 comments on commit 6a516f1

Please sign in to comment.