Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[BRE-443] - Fix bwwl lint pre Deployment #173

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
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
6 changes: 3 additions & 3 deletions .github/workflows/build-test.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "build-test"
name: "Build Test"
on:
pull_request:

Expand All @@ -9,7 +9,7 @@ defaults:
jobs:
build:
name: Building & testing @bitwarden/sm-action for - ${{ matrix.settings.os }}
runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }}
runs-on: ${{ matrix.settings.os || 'ubuntu-24.04' }}
strategy:
fail-fast: false
matrix:
Expand All @@ -26,7 +26,7 @@ jobs:
npm run dist
npm run test

- os: ubuntu-22.04
- os: ubuntu-24.04
target: x86_64-unknown-linux-gnu
build: |
npm run dist
Expand Down
5 changes: 4 additions & 1 deletion .github/workflows/check-dist.yml
Original file line number Diff line number Diff line change
Expand Up @@ -18,9 +18,11 @@ defaults:

jobs:
check-dist:
name: Check dist
runs-on: ubuntu-22.04

steps:
name: Checkout repo
- uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0

- name: Setup Node
Expand All @@ -47,7 +49,8 @@ jobs:
fi

# If index.js was different than expected, upload the expected version as an artifact
- uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
- name: Upload artifact
uses: actions/upload-artifact@50769540e7f4bd5e21e526ee35c689e35e0d6874 # v4
if: ${{ failure() && steps.diff.conclusion == 'failure' }}
with:
name: dist
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/qa-run.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: "qa-run"
name: QA Run
on:
workflow_dispatch:
inputs:
Expand All @@ -18,14 +18,14 @@ on:
jobs:
run:
name: Running QA test on ${{ matrix.settings.os }}
runs-on: ${{ matrix.settings.os || 'ubuntu-latest' }}
runs-on: ${{ matrix.settings.os || 'ubuntu-24.04' }}
strategy:
fail-fast: false
matrix:
settings:
- os: macos-13
- os: windows-2022
- os: ubuntu-22.04
- os: ubuntu-24.04
steps:
- name: Checkout
uses: actions/checkout@d632683dd7b4114ad314bca15554477dd762a938 # v4.2.0
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ jobs:
token: ${{ secrets.GITHUB_TOKEN }}
draft: true

- name: git tag
- name: Git tag
env:
VERSION: ${{ steps.version.outputs.major_version }}
run: git tag -f $VERSION
Expand Down
Loading