Skip to content

Commit

Permalink
composite
Browse files Browse the repository at this point in the history
  • Loading branch information
huozhi committed Jan 23, 2023
1 parent fcdf230 commit 0bbbb54
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 4 deletions.
8 changes: 5 additions & 3 deletions .github/workflows/install/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@ inputs:


runs:
using: composite
steps:
- name: Check out
uses: actions/checkout@v3
Expand All @@ -23,11 +24,12 @@ runs:

- name: Setup pnpm
uses: pnpm/action-setup@v2.2.2
with:
version: 7

- name: Install Dependencies
shell: bash
run: pnpm install

run: |
corepack enable
pnpm install
env:
CI: true
6 changes: 5 additions & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,10 @@ jobs:
uses: ./.github/workflows/install

- name: Lint
run: pnpm run-all-checks && pnpm clean && pnpm build && pnpm test-packaging
run: |
pnpm run-all-checks
pnpm clean
pnpm build
pnpm test-packaging
env:
CI: true

0 comments on commit 0bbbb54

Please sign in to comment.