Skip to content

Commit

Permalink
fix: package preparing was removed
Browse files Browse the repository at this point in the history
  • Loading branch information
Damian333 committed Dec 12, 2024
1 parent c82e1a7 commit ac2344f
Showing 1 changed file with 5 additions and 11 deletions.
16 changes: 5 additions & 11 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,9 +47,6 @@ jobs:
- name: Install dependencies
run: yarn install

- name: Build package
run: npm run build

typecheck:
runs-on: ubuntu-latest
steps:
Expand All @@ -61,19 +58,16 @@ jobs:
with:
node-version: '20'

- name: Cache Dependencies
- name: Cache Yarn Dependencies
uses: actions/cache@v3
with:
path: ~/.npm
key: ${{ runner.os }}-npm-${{ hashFiles('**/package-lock.json') }}
path: ~/.yarn/cache
key: ${{ runner.os }}-yarn-${{ hashFiles('**/yarn.lock') }}
restore-keys: |
${{ runner.os }}-npm-
${{ runner.os }}-yarn-
- name: Install dependencies
run: npm ci

- name: Build library
run: npm run build
run: yarn install

publish:
needs: build-library
Expand Down

0 comments on commit ac2344f

Please sign in to comment.