ci: use actions/checkout@v6.0.2 in the test workflow (#173)
#585
This file contains hidden or 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: | |
| workflow_dispatch: | |
| pull_request: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| contents: write | |
| jobs: | |
| remove-cache: | |
| runs-on: ubuntu-latest | |
| permissions: write-all | |
| steps: | |
| - name: 📥 Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: 🗑️ Remove cache | |
| run: gh cache delete --all || true | |
| env: | |
| GH_TOKEN: ${{ github.token }} | |
| tests: | |
| name: Tests | |
| runs-on: ubuntu-latest | |
| steps: | |
| - name: Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: Setup Bun | |
| uses: ./ | |
| with: | |
| no-cache: true | |
| - name: Install dependencies | |
| run: bun install | |
| - name: Run tests | |
| run: bun test --coverage | |
| setup-bun: | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: true | |
| needs: [remove-cache, tests] | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| - windows-11-arm | |
| bun-version: | |
| - latest | |
| - canary | |
| - "1.1.0" | |
| - "1.3.10" | |
| - "1.x" | |
| - "1" | |
| - "> 1.0.0" | |
| - "< 2" | |
| # https://github.com/oven-sh/setup-bun/issues/37 | |
| # - "1.x" | |
| # - "1" | |
| # - "> 1.0.0" | |
| # - "< 2" | |
| # Disable <sha> support for now. This is because Github Artifacts | |
| # expire after 90 days, and we don't have another source of truth yet. | |
| # - "822a00c4d508b54f650933a73ca5f4a3af9a7983" # 1.0.0 commit | |
| steps: | |
| - name: 📥 Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: 🛠️ Setup Bun | |
| uses: ./ | |
| id: setup_bun | |
| with: | |
| bun-version: ${{ matrix.bun-version }} | |
| no-cache: true | |
| - name: ▶️ Run Bun | |
| id: run_bun | |
| run: | | |
| bun --version | |
| - name: ⚖️ Verify Bun version | |
| uses: ./.github/actions/compare-bun-version | |
| with: | |
| bun-version: ${{ matrix.bun-version }} | |
| setup-bun-from-file: | |
| name: setup-bun from (${{ matrix.os }}, ${{ matrix.file.name }}) | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: true | |
| needs: [remove-cache, tests] | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| - windows-11-arm | |
| file: | |
| - name: package.json (packageManager bun@1.1.0) | |
| file: package.json | |
| run: | | |
| echo "$(jq '. += {"packageManager": "bun@1.1.0"}' package.json)" > package.json | |
| - name: foo/package.json (packageManager bun@1.1.0) | |
| file: foo/package.json | |
| run: | | |
| mkdir -p foo | |
| echo "$(jq '. += {"packageManager": "bun@1.1.0"}' package.json)" > foo/package.json | |
| - name: package.json (packageManager yarn@bun@1.1.0) | |
| file: package.json | |
| run: | | |
| echo "$(jq '. += {"packageManager": "yarn@bun@1.1.0"}' package.json)" > package.json | |
| - name: package.json (engines bun@1.1.0) | |
| file: package.json | |
| run: | | |
| echo "$(jq '.engines = {"bun": "1.1.0"}' package.json)" > package.json | |
| - name: .tool-versions (bun 1.1.0) | |
| file: .tool-versions | |
| run: echo "bun 1.1.0" > .tool-versions | |
| - name: .tool-versions (bun1.1.0) | |
| file: .tool-versions | |
| run: echo "bun1.1.0" > .tool-versions | |
| - name: .tool-versions (bun 1.1.0) | |
| file: .tool-versions | |
| run: echo "bun 1.1.0" > .tool-versions | |
| - name: .bumrc (1.1.0) | |
| file: .bumrc | |
| run: echo "1.1.0" > .bumrc | |
| - name: .bun-version (1.1.0) | |
| file: .bun-version | |
| run: echo "1.1.0" > .bun-version | |
| steps: | |
| - name: 📥 Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: 📄 Setup file | |
| run: ${{ matrix.file.run }} | |
| - name: 🛠️ Setup Bun | |
| uses: ./ | |
| with: | |
| bun-version-file: ${{ matrix.file.file }} | |
| no-cache: true | |
| - name: ⚖️ Compare versions | |
| uses: ./.github/actions/compare-bun-version | |
| with: | |
| bun-version: "1.1.0" | |
| setup-bun-from-package-json-without-specified-field: | |
| name: setup-bun from (${{ matrix.os }}, ${{ matrix.file.name }}) without specified field | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: true | |
| needs: [remove-cache, tests] | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| - windows-11-arm | |
| file: | |
| - name: package.json (packageManager bun@1.1.0) | |
| file: package.json | |
| run: | | |
| echo "$(jq '. += {"packageManager": "bun@1.1.0"}' package.json)" > package.json | |
| - name: package.json (packageManager yarn@bun@1.1.0) | |
| file: package.json | |
| run: | | |
| echo "$(jq '. += {"packageManager": "yarn@bun@1.1.0"}' package.json)" > package.json | |
| - name: package.json (engines bun@1.1.0) | |
| file: package.json | |
| run: | | |
| echo "$(jq '.engines = {"bun": "1.1.0"}' package.json)" > package.json | |
| steps: | |
| - name: 📥 Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: 📄 Setup file | |
| run: ${{ matrix.file.run }} | |
| - name: 🛠️ Setup Bun | |
| uses: ./ | |
| with: | |
| no-cache: true | |
| - name: ⚖️ Compare versions | |
| uses: ./.github/actions/compare-bun-version | |
| with: | |
| bun-version: "1.1.0" | |
| setup-bun-download-url: | |
| name: setup-bun from (${{ matrix.os }}, download url) | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: true | |
| needs: [remove-cache, tests] | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| - macos-latest | |
| - windows-latest | |
| steps: | |
| - name: 📥 Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: 🛠️ Setup Bun | |
| uses: ./ | |
| id: setup_bun | |
| with: | |
| bun-download-url: "https://github.com/oven-sh/bun/releases/latest/download/bun-${{runner.os == 'macOS' && 'darwin' || runner.os}}-${{ runner.arch == 'X64' && 'x64' || 'aarch64' }}.zip" | |
| - name: ▶️ Run Bun | |
| id: run_bun | |
| run: | | |
| bun --version | |
| test-custom-registries: | |
| name: test installing deps from custom registries (${{ matrix.os }}) | |
| runs-on: ${{ matrix.os }} | |
| continue-on-error: true | |
| needs: [remove-cache, tests] | |
| strategy: | |
| matrix: | |
| os: | |
| - ubuntu-latest | |
| steps: | |
| - name: 📥 Checkout | |
| uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2 | |
| - name: 🛠️ Setup Bun | |
| uses: ./ | |
| id: setup_bun | |
| with: | |
| registries: | | |
| https://registry.npmjs.org | |
| @types:https://registry.yarnpkg.com | |
| - name: ▶️ Install from default registry | |
| run: | | |
| output=$(bun add is-odd --verbose --force 2>&1) | |
| if echo "$output" | grep -q "HTTP/1.1 GET https://registry.npmjs.org/is-odd"; then | |
| echo "Successfully installed from default registry" | |
| else | |
| echo "Failed to install from default registry" | |
| exit 1 | |
| fi | |
| - name: ▶️ Install from @types registry | |
| run: | | |
| output=$(bun add @types/bun --verbose --force 2>&1) | |
| if echo "$output" | grep -q "HTTP/1.1 GET https://registry.yarnpkg.com/@types%2fbun"; then | |
| echo "Successfully installed from @types registry" | |
| else | |
| echo "Failed to install from @types registry" | |
| exit 1 | |
| fi |