chore(deps): update dependency lefthook to v1.8.1 #521
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Test | |
on: | |
push: | |
branches: [main, "releases/v*"] | |
pull_request: | |
workflow_dispatch: | |
env: | |
# This version is used when running the tests to ensure that the correct version is installed. | |
# It is the version that the test expect to find during automatic version detection. It is important | |
# that this version is NOT the latest version of the CLI because some tests may still pass if the | |
# automatic version detection fails and falls back to the latest version. | |
BIOME_EXPECTED_VERSION: 1.5.0 | |
jobs: | |
test-specific: | |
name: Specific version | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup Biome CLI | |
uses: ./ | |
with: | |
version: "1.5.1" | |
- name: Retrieve the version | |
id: version | |
shell: bash | |
run: echo "version=$(biome --version)" >> "$GITHUB_OUTPUT" | |
- name: Check equality | |
shell: bash | |
run: | | |
if [ "Version: 1.5.1" == "${{ steps.version.outputs.version }}" ]; then | |
exit 0 | |
else | |
echo "Versions do not match" | |
exit 1 | |
fi | |
test-npm: | |
name: Auto-detect version (npm) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup Biome CLI | |
uses: ./ | |
with: | |
working-dir: "test/fixtures/npm" | |
- name: Retrieve the version | |
id: version | |
shell: bash | |
run: echo "version=$(biome --version)" >> "$GITHUB_OUTPUT" | |
- name: Check equality | |
shell: bash | |
run: | | |
if [ "Version: ${{ env.BIOME_EXPECTED_VERSION }}" == "${{ steps.version.outputs.version }}" ]; then | |
exit 0 | |
else | |
echo "Versions do not match" | |
exit 1 | |
fi | |
test-pnpm: | |
name: Auto-detect version (pnpm) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup Biome CLI | |
uses: ./ | |
with: | |
working-dir: "test/fixtures/pnpm" | |
- name: Retrieve the version | |
id: version | |
shell: bash | |
run: echo "version=$(biome --version)" >> "$GITHUB_OUTPUT" | |
- name: Check equality | |
shell: bash | |
run: | | |
if [ "Version: ${{ env.BIOME_EXPECTED_VERSION }}" == "${{ steps.version.outputs.version }}" ]; then | |
exit 0 | |
else | |
echo "Versions do not match" | |
exit 1 | |
fi | |
test-pnpm-9: | |
name: Auto-detect version (pnpm lockfile v9) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup Biome CLI | |
uses: ./ | |
with: | |
working-dir: "test/fixtures/pnpm-9" | |
- name: Retrieve the version | |
id: version | |
shell: bash | |
run: echo "version=$(biome --version)" >> "$GITHUB_OUTPUT" | |
- name: Check equality | |
shell: bash | |
run: | | |
if [ "Version: ${{ env.BIOME_EXPECTED_VERSION }}" == "${{ steps.version.outputs.version }}" ]; then | |
exit 0 | |
else | |
echo "Versions do not match" | |
exit 1 | |
fi | |
test-yarn: | |
name: Auto-detect version (yarn) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup Biome CLI | |
uses: ./ | |
with: | |
working-dir: "test/fixtures/yarn" | |
- name: Retrieve the version | |
id: version | |
shell: bash | |
run: echo "version=$(biome --version)" >> "$GITHUB_OUTPUT" | |
- name: Check equality | |
shell: bash | |
run: | | |
if [ "Version: ${{ env.BIOME_EXPECTED_VERSION }}" == "${{ steps.version.outputs.version }}" ]; then | |
exit 0 | |
else | |
echo "Versions do not match" | |
exit 1 | |
fi | |
test-bun: | |
name: Auto-detect version (bun) | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup Biome CLI | |
uses: ./ | |
with: | |
working-dir: "test/fixtures/bun" | |
- name: Retrieve the version | |
id: version | |
shell: bash | |
run: echo "version=$(biome --version)" >> "$GITHUB_OUTPUT" | |
- name: Check equality | |
shell: bash | |
run: | | |
if [ "Version: ${{ env.BIOME_EXPECTED_VERSION }}" == "${{ steps.version.outputs.version }}" ]; then | |
exit 0 | |
else | |
echo "Versions do not match" | |
exit 1 | |
fi | |
test-fallback-latest: | |
name: Fallback to latest | |
runs-on: ${{ matrix.os }} | |
strategy: | |
fail-fast: false | |
matrix: | |
os: [ubuntu-latest, macos-latest, windows-latest] | |
steps: | |
- name: Checkout | |
uses: actions/checkout@eef61447b9ff4aafe5dcd4e0bbf5d482be7e7871 # v4 | |
- name: Setup Biome CLI | |
uses: ./ | |
with: | |
working-dir: "test/fixtures/fallback" | |
- name: Retrieve the version | |
id: version | |
shell: bash | |
run: biome --version |