Skip to content
Open
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
8 changes: 4 additions & 4 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
Expand All @@ -39,7 +39,7 @@
run: npm ci

- name: Install Playwright
run: npx playwright install --with-deps

Check warning on line 42 in .github/workflows/main.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Define exact package version to avoid installing unverified releases.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoQx0_vsReWVnRfQ&open=AZ9fKoQx0_vsReWVnRfQ&pullRequest=1402

Check warning on line 42 in .github/workflows/main.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

"npx" can install packages on-demand and run their lifecycle scripts.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoQx0_vsReWVnRfP&open=AZ9fKoQx0_vsReWVnRfP&pullRequest=1402

- name: Lint
run: npm run lint
Expand All @@ -58,7 +58,7 @@
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
Expand All @@ -74,7 +74,7 @@
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npx -p @nuxt/module-builder -p semantic-release -p @semantic-release/git -p @semantic-release/changelog -p @semantic-release/exec -p @semantic-release/github semantic-release

Check warning on line 77 in .github/workflows/main.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

"npx" can install packages on-demand and run their lifecycle scripts.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoQx0_vsReWVnRfR&open=AZ9fKoQx0_vsReWVnRfR&pullRequest=1402

Check warning on line 77 in .github/workflows/main.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Define exact package version to avoid installing unverified releases.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoQx0_vsReWVnRfS&open=AZ9fKoQx0_vsReWVnRfS&pullRequest=1402

build-playground:
name: Build (Playground)
Expand All @@ -87,7 +87,7 @@
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
Expand Down Expand Up @@ -121,7 +121,7 @@
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/next.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
Expand All @@ -39,7 +39,7 @@
run: npm ci

- name: Install Playwright
run: npx playwright install --with-deps

Check warning on line 42 in .github/workflows/next.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Define exact package version to avoid installing unverified releases.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoTE0_vsReWVnRfY&open=AZ9fKoTE0_vsReWVnRfY&pullRequest=1402

Check warning on line 42 in .github/workflows/next.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

"npx" can install packages on-demand and run their lifecycle scripts.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoTE0_vsReWVnRfX&open=AZ9fKoTE0_vsReWVnRfX&pullRequest=1402

- name: Lint
run: npm run lint
Expand All @@ -58,7 +58,7 @@
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
Expand All @@ -75,4 +75,4 @@
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
run: |
npx -p @nuxt/module-builder -p semantic-release -p @semantic-release/git -p @semantic-release/changelog -p @semantic-release/exec -p @semantic-release/github semantic-release

Check warning on line 78 in .github/workflows/next.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

"npx" can install packages on-demand and run their lifecycle scripts.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoTE0_vsReWVnRfZ&open=AZ9fKoTE0_vsReWVnRfZ&pullRequest=1402

Check warning on line 78 in .github/workflows/next.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Define exact package version to avoid installing unverified releases.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoTE0_vsReWVnRfa&open=AZ9fKoTE0_vsReWVnRfa&pullRequest=1402
4 changes: 2 additions & 2 deletions .github/workflows/pull-request.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
Expand Down Expand Up @@ -51,7 +51,7 @@
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}
- name: Checkout Repo
Expand All @@ -64,4 +64,4 @@
key: ${{ matrix.os }}-node-v${{ matrix.node }}-deps-${{ hashFiles(format('{0}{1}', github.workspace, '/package-lock.json')) }}
- name: Build
run: |
npx pkg-pr-new publish

Check warning on line 67 in .github/workflows/pull-request.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Define exact package version to avoid installing unverified releases.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoSD0_vsReWVnRfU&open=AZ9fKoSD0_vsReWVnRfU&pullRequest=1402

Check warning on line 67 in .github/workflows/pull-request.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

"npx" can install packages on-demand and run their lifecycle scripts.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoSD0_vsReWVnRfT&open=AZ9fKoSD0_vsReWVnRfT&pullRequest=1402
2 changes: 1 addition & 1 deletion .github/workflows/sonar-cloud.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
node: [22]

steps:
- uses: actions/setup-node@v6
- uses: actions/setup-node@v7
with:
node-version: ${{ matrix.node }}

Expand All @@ -42,7 +42,7 @@
run: npm ci

- name: Install Playwright
run: npx playwright install --with-deps

Check warning on line 45 in .github/workflows/test.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Define exact package version to avoid installing unverified releases.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoSk0_vsReWVnRfW&open=AZ9fKoSk0_vsReWVnRfW&pullRequest=1402

Check warning on line 45 in .github/workflows/test.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

"npx" can install packages on-demand and run their lifecycle scripts.

See more on https://sonarcloud.io/project/issues?id=basics_nuxt-booster&issues=AZ9fKoSj0_vsReWVnRfV&open=AZ9fKoSj0_vsReWVnRfV&pullRequest=1402

- name: Lint
run: npm run lint
Expand Down
Loading