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
2 changes: 2 additions & 0 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,6 +39,8 @@ jobs:
steps:
- name: Checkout repository
uses: actions/checkout@v4
with:
persist-credentials: false

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/pr-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,8 @@ name: PR Validation
on:
pull_request:

permissions: {}

env:
NODE_VERSION: 18.17.1
TEST_RESULTS_DIRECTORY: .
Expand All @@ -17,18 +19,22 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Build VSIX
uses: ./.github/actions/build-vsix
with:
node_version: ${{ env.NODE_VERSION}}
node_version: ${{ env.NODE_VERSION }}

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Lint
uses: ./.github/actions/lint
Expand All @@ -52,6 +58,7 @@ jobs:
uses: actions/checkout@v4
with:
path: ${{ env.special-working-directory-relative }}
persist-credentials: false

# Install bundled libs using 3.9 even though you test it on other versions.
- name: Use Python 3.9
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/pr-labels.yml
Original file line number Diff line number Diff line change
Expand Up @@ -12,9 +12,12 @@ jobs:
add-pr-label:
name: 'Ensure Required Labels'
runs-on: ubuntu-latest
permissions:
issues: write
pull-requests: write
steps:
- name: 'PR impact specified'
uses: mheap/github-action-required-labels@v5
uses: mheap/github-action-required-labels@388fd6af37b34cdfe5a23b37060e763217e58b03 # v5.5.0
with:
mode: exactly
count: 1
Expand Down
9 changes: 8 additions & 1 deletion .github/workflows/push-check.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,8 @@ on:
- 'release/*'
- 'release-*'

permissions: {}

env:
NODE_VERSION: 18.17.1
TEST_RESULTS_DIRECTORY: .
Expand All @@ -22,18 +24,22 @@ jobs:
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Build VSIX
uses: ./.github/actions/build-vsix
with:
node_version: ${{ env.NODE_VERSION}}
node_version: ${{ env.NODE_VERSION }}

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
persist-credentials: false

- name: Lint
uses: ./.github/actions/lint
Expand All @@ -57,6 +63,7 @@ jobs:
uses: actions/checkout@v4
with:
path: ${{ env.special-working-directory-relative }}
persist-credentials: false

# Install bundled libs using 3.9 even though you test it on other versions.
- name: Use Python 3.9
Expand Down
2 changes: 2 additions & 0 deletions .vscode/settings.json
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,6 @@
"editor.defaultFormatter": "charliermarsh.ruff",
"editor.formatOnSave": true
},
"git.branchProtection": ["main"],
"git.branchRandomName.enable": true,
}