Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion .github/workflows/changelog.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: changelog
on:
push:
branches:
- main
- 1.x

permissions:
pull-requests: write
Expand All @@ -20,6 +20,7 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: '1.x'
fetch-depth: 0
- run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
Expand Down
10 changes: 9 additions & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- scripts
pull_request:
branches:
- main
- 1.x
- "!v[0-9]*"
paths-ignore:
- docs/**
Expand All @@ -22,6 +22,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
ref: '1.x'
- run: npm i -g --force corepack && corepack enable

- name: Set node version to 20
Expand All @@ -45,6 +47,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
ref: '1.x'
- run: npm i -g --force corepack && corepack enable

- name: Set node version to 20
Expand All @@ -71,6 +75,8 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
ref: '1.x'
- run: npm i -g --force corepack && corepack enable

- name: Set node version to 20
Expand All @@ -93,6 +99,8 @@ jobs:
CI_JOB_NUMBER: 1
steps:
- uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4
with:
ref: '1.x'
- run: npm i -g --force corepack && corepack enable

- name: Set node version to 20
Expand Down
62 changes: 0 additions & 62 deletions .github/workflows/release-pr.yml

This file was deleted.

3 changes: 2 additions & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ name: release
on:
push:
tags:
- "v*"
- "v1*"

# Remove default permissions of GITHUB_TOKEN for security
# https://docs.github.com/en/actions/using-jobs/assigning-permissions-to-jobs
Expand All @@ -19,6 +19,7 @@ jobs:
steps:
- uses: actions/checkout@692973e3d937129bcbf40652eb9f2f61becf3332 # v4.1.7
with:
ref: '1.x'
fetch-depth: 0
- run: npm i -g --force corepack && corepack enable
- uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4.0.2
Expand Down
2 changes: 1 addition & 1 deletion packages/nuxt/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
"dev:prepare": "nuxt-module-build build --stub && nuxt-module-build prepare && nuxi prepare playground"
},
"peerDependencies": {
"@pinia/nuxt": "^0.5.1"
"@pinia/nuxt": "<=0.9.0"
},
"dependencies": {
"@nuxt/kit": "^3.12.3",
Expand Down