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
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
manifest-file: release-please/manifest.json

- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0
if: ${{ steps.release.outputs.release_created }}

- name: 📦 Setup bun
Expand All @@ -47,7 +47,7 @@

- name: 📥 Install deps
if: ${{ steps.release.outputs.release_created }}
run: bun install --frozen-lockfile

Check warning on line 50 in .github/workflows/release.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=jpb06_node-coverage-badges&issues=AZ9GVRbhs-lwpYkD7WoE&open=AZ9GVRbhs-lwpYkD7WoE&pullRequest=205

- name: ⚙️ Building package
if: ${{ steps.release.outputs.release_created }}
Expand Down
8 changes: 4 additions & 4 deletions .github/workflows/tests-scan.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0

- name: 📦 Setup bun
uses: oven-sh/setup-bun@ecf28ddc73e819eb6fa29df6b34ef8921c743461 # v2.1.3
Expand All @@ -29,7 +29,7 @@
cache-dependency-path: ./package.json

- name: 📥 Install deps
run: bun install --frozen-lockfile

Check warning on line 32 in .github/workflows/tests-scan.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=jpb06_node-coverage-badges&issues=AZ9GVRcPs-lwpYkD7WoF&open=AZ9GVRcPs-lwpYkD7WoF&pullRequest=205

- name: 📓 Format
run: bun run format-ci
Expand All @@ -42,7 +42,7 @@
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0

- name: 📦 Setup bun
uses: oven-sh/setup-bun@ecf28ddc73e819eb6fa29df6b34ef8921c743461 # v2.1.3
Expand All @@ -55,7 +55,7 @@
cache-dependency-path: ./package.json

- name: 📥 Install deps
run: bun install --frozen-lockfile

Check warning on line 58 in .github/workflows/tests-scan.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=jpb06_node-coverage-badges&issues=AZ9GVRcPs-lwpYkD7WoG&open=AZ9GVRcPs-lwpYkD7WoG&pullRequest=205

- name: 🔎 Type check
run: bun run type-check
Expand All @@ -65,7 +65,7 @@
runs-on: ubuntu-latest
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0

- name: 📦 Setup bun
uses: oven-sh/setup-bun@ecf28ddc73e819eb6fa29df6b34ef8921c743461 # v2.1.3
Expand All @@ -78,7 +78,7 @@
cache-dependency-path: ./package.json

- name: 📥 Install deps
run: bun install --frozen-lockfile

Check warning on line 81 in .github/workflows/tests-scan.yml

View check run for this annotation

SonarQubeCloud / SonarCloud Code Analysis

Omitting "--ignore-scripts" allows lifecycle scripts to run during package installation.

See more on https://sonarcloud.io/project/issues?id=jpb06_node-coverage-badges&issues=AZ9GVRcPs-lwpYkD7WoH&open=AZ9GVRcPs-lwpYkD7WoH&pullRequest=205

- name: 🧪 Tests
run: bun run test-ci
Expand All @@ -95,7 +95,7 @@
needs: [lint, typecheck, test]
steps:
- name: ⬇️ Checkout repo
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2
uses: actions/checkout@d23441a48e516b6c34aea4fa41551a30e30af803 # v6.1.0

- name: 👀 Get coverage artifact
uses: actions/download-artifact@70fc10c6e5e1ce46ad2ea6f2b72d43f7d47b13c3 # v8.0.0
Expand Down
Loading