[BRE-443] - Fix Linting pre bwwl Deployment (#12066)
This commit is contained in:
parent
06b5c798dd
commit
9e15f7dc29
|
@ -72,7 +72,7 @@ jobs:
|
||||||
echo "node_version=$NODE_VERSION" >> $GITHUB_OUTPUT
|
echo "node_version=$NODE_VERSION" >> $GITHUB_OUTPUT
|
||||||
|
|
||||||
cli:
|
cli:
|
||||||
name: "${{ matrix.os.base }} - ${{ matrix.license_type.readable }}"
|
name: CLI ${{ matrix.os.base }} - ${{ matrix.license_type.readable }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
|
@ -177,7 +177,7 @@ jobs:
|
||||||
if-no-files-found: error
|
if-no-files-found: error
|
||||||
|
|
||||||
cli-windows:
|
cli-windows:
|
||||||
name: "windows - ${{ matrix.license_type.readable }}"
|
name: Windows - ${{ matrix.license_type.readable }}
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
license_type:
|
license_type:
|
||||||
|
|
|
@ -266,7 +266,8 @@ jobs:
|
||||||
channel_id: ${{ steps.slack-message.outputs.channel_id }}
|
channel_id: ${{ steps.slack-message.outputs.channel_id }}
|
||||||
ts: ${{ steps.slack-message.outputs.ts }}
|
ts: ${{ steps.slack-message.outputs.ts }}
|
||||||
steps:
|
steps:
|
||||||
- uses: bitwarden/gh-actions/report-deployment-status-to-slack@main
|
- name: Notify Slack with start message
|
||||||
|
uses: bitwarden/gh-actions/report-deployment-status-to-slack@main
|
||||||
id: slack-message
|
id: slack-message
|
||||||
with:
|
with:
|
||||||
project: Clients
|
project: Clients
|
||||||
|
@ -419,7 +420,8 @@ jobs:
|
||||||
- azure-deploy
|
- azure-deploy
|
||||||
- artifact-check
|
- artifact-check
|
||||||
steps:
|
steps:
|
||||||
- uses: bitwarden/gh-actions/report-deployment-status-to-slack@main
|
- name: Notify Slack with result
|
||||||
|
uses: bitwarden/gh-actions/report-deployment-status-to-slack@main
|
||||||
with:
|
with:
|
||||||
project: Clients
|
project: Clients
|
||||||
environment: ${{ needs.setup.outputs.environment-name }}
|
environment: ${{ needs.setup.outputs.environment-name }}
|
||||||
|
|
|
@ -98,14 +98,14 @@ jobs:
|
||||||
|
|
||||||
rust:
|
rust:
|
||||||
name: Run Rust tests on ${{ matrix.os }}
|
name: Run Rust tests on ${{ matrix.os }}
|
||||||
runs-on: ${{ matrix.os || 'ubuntu-latest' }}
|
runs-on: ${{ matrix.os || 'ubuntu-22.04' }}
|
||||||
permissions:
|
permissions:
|
||||||
contents: read
|
contents: read
|
||||||
|
|
||||||
strategy:
|
strategy:
|
||||||
matrix:
|
matrix:
|
||||||
os:
|
os:
|
||||||
- ubuntu-latest
|
- ubuntu-22.04
|
||||||
- macos-latest
|
- macos-latest
|
||||||
- windows-latest
|
- windows-latest
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue