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
27 changes: 7 additions & 20 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ jobs:
ref: ${{ env.REF }}
- id: node
name: Setup Node.js
uses: actions/setup-node@v4.4.0
uses: actions/setup-node@v5.0.0
with:
cache: yarn
cache-dependency-path: yarn.lock
Expand All @@ -92,7 +92,6 @@ jobs:
run: |
echo "result=${{ startsWith(github.head_ref || github.ref_name, 'release/') && steps.manifest-version.outputs.result || format('{0}+{1}', steps.manifest-version.outputs.result, github.event.pull_request.head.sha || github.sha) }}" >>$GITHUB_OUTPUT
gitguardian:
needs: preflight
runs-on: ubuntu-latest
steps:
- id: checkout
Expand All @@ -112,9 +111,7 @@ jobs:
with:
args: --all-policies --format sarif --show-secrets --with-incident-details --verbose
commitlint:
needs:
- gitguardian
- preflight
needs: preflight
runs-on: ubuntu-latest
steps:
- id: checkout
Expand All @@ -126,7 +123,7 @@ jobs:
ref: ${{ env.REF }}
- id: node
name: Setup Node.js
uses: actions/setup-node@v4.4.0
uses: actions/setup-node@v5.0.0
with:
cache: yarn
cache-dependency-path: yarn.lock
Expand All @@ -142,10 +139,7 @@ jobs:
if: github.run_number != '1'
run: yarn commitlint --from $SHA~${{ github.event.pull_request.commits || 1 }} --to $SHA
format:
needs:
- commitlint
- gitguardian
- preflight
needs: preflight
runs-on: ubuntu-latest
steps:
- id: checkout
Expand All @@ -156,7 +150,7 @@ jobs:
ref: ${{ env.REF }}
- id: node
name: Setup Node.js
uses: actions/setup-node@v4.4.0
uses: actions/setup-node@v5.0.0
with:
cache: yarn
cache-dependency-path: yarn.lock
Expand All @@ -178,10 +172,7 @@ jobs:
config-path: .dprint.jsonc
dprint-version: ${{ steps.version.outputs.result }}
lint:
needs:
- commitlint
- gitguardian
- preflight
needs: preflight
runs-on: ubuntu-latest
steps:
- id: checkout
Expand All @@ -192,7 +183,7 @@ jobs:
ref: ${{ env.REF }}
- id: node
name: Setup Node.js
uses: actions/setup-node@v4.4.0
uses: actions/setup-node@v5.0.0
with:
cache: yarn
cache-dependency-path: yarn.lock
Expand All @@ -210,10 +201,6 @@ jobs:
name: Check eslint files
run: yarn check:lint
spelling:
needs:
- commitlint
- gitguardian
- preflight
runs-on: ubuntu-latest
steps:
- id: checkout
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/dependabot-dedupe.yml
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ jobs:
token: ${{ steps.bot-token.outputs.token }}
- id: node
name: Setup Node.js
uses: actions/setup-node@v4.4.0
uses: actions/setup-node@v5.0.0
with:
cache: yarn
cache-dependency-path: yarn.lock
Expand Down