Skip to content

Commit

Permalink
update packages
Browse files Browse the repository at this point in the history
  • Loading branch information
Pascal Klesse committed Aug 30, 2024
1 parent bf23897 commit 3ef4eee
Show file tree
Hide file tree
Showing 14 changed files with 2,672 additions and 25,953 deletions.
8 changes: 4 additions & 4 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
Expand Up @@ -26,14 +26,14 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: "pnpm"
cache: "npm"
node-version: ${{ matrix.node }}

- name: Install dependencies
run: pnpm install
run: npm install

- name: Install dependencies
run: cd playground/nuxt-app && pnpm install && pnpm build
run: cd playground/nuxt-app && npm install && npm build

- name: Build
run: pnpm build
run: npm build
10 changes: 5 additions & 5 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,19 +27,19 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: "pnpm"
cache: "npm"
node-version: ${{ matrix.node }}
registry-url: "https://registry.npmjs.org/"
- uses: actions/checkout@v2
with:
fetch-depth: 3
- name: Install dependencies
run: pnpm install
run: npm install

- name: Install dependencies
run: cd playground/nuxt-app && pnpm install && pnpm build
run: cd playground/nuxt-app && npm install && npm build

- run: pnpm build
- run: npm build

- name: Set git identity
run: |
Expand All @@ -51,7 +51,7 @@ jobs:
git remote set-url origin https://x-access-token:${{ github.token }}@github.com/${{ github.repository }}
git push -o ci.skip
- name: Publish Package
run: pnpm publish --tag next --access public --no-git-checks
run: npm publish --tag next --access public --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: get-npm-version
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -33,19 +33,19 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
cache: "pnpm"
cache: "npm"
node-version: ${{ matrix.node }}
registry-url: "https://registry.npmjs.org/"
- uses: actions/checkout@v2
with:
fetch-depth: 3
- name: Install dependencies
run: pnpm install
run: npm install
- name: Install dependencies
run: cd playground/nuxt-app && pnpm install && pnpm build
- run: pnpm build
run: cd playground/nuxt-app && npm install && npm build
- run: npm build
- name: Publish Package
run: pnpm publish --access public --tag latest --no-git-checks
run: npm publish --access public --tag latest --no-git-checks
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
- name: Deploy notification
Expand Down
Loading

0 comments on commit 3ef4eee

Please sign in to comment.