Bump the frontend-dependencies group in /frontend with 8 updates #7265
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: CI | |
on: | |
push: | |
branches-ignore: | |
- "wip*" | |
tags: | |
- "v*" | |
pull_request: | |
schedule: | |
# Daily at 5:12 | |
- cron: "12 5 * * *" | |
workflow_dispatch: | |
concurrency: | |
group: ci-${{ github.event_name }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
list: | |
runs-on: ubuntu-latest | |
outputs: | |
noxenvs: ${{ steps.noxenvs-matrix.outputs.noxenvs }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up nox | |
uses: wntrblm/[email protected] | |
- id: noxenvs-matrix | |
run: | | |
echo >>$GITHUB_OUTPUT noxenvs=$( | |
nox --list-sessions --json | jq '[.[].session]' | |
) | |
ci: | |
needs: list | |
runs-on: ubuntu-latest | |
strategy: | |
fail-fast: false | |
matrix: | |
noxenv: ${{ fromJson(needs.list.outputs.noxenvs) }} | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Install dependencies | |
run: sudo apt-get update && sudo apt-get install -y libenchant-2-dev | |
if: runner.os == 'Linux' && startsWith(matrix.noxenv, 'docs') | |
- name: Install dependencies | |
run: brew install enchant podman | |
if: runner.os == 'macOS' | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: | | |
3.11 | |
3.12 | |
allow-prereleases: true | |
- uses: actions/setup-node@v4 | |
with: | |
node-version-file: frontend/package.json | |
if: startsWith(matrix.noxenv, 'ui') | |
- uses: pnpm/action-setup@v4 | |
with: | |
package_json_file: frontend/package.json | |
run_install: false | |
if: startsWith(matrix.noxenv, 'ui') | |
- name: Set up uv | |
uses: hynek/setup-cached-uv@v2 | |
- name: Set up nox | |
uses: wntrblm/[email protected] | |
- name: Run nox | |
run: nox -s "${{ matrix.noxenv }}" | |
containerless: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
- name: Set up uv | |
uses: hynek/setup-cached-uv@v2 | |
- name: Set up nox | |
uses: wntrblm/[email protected] | |
- name: Ensure containers don't work | |
run: sudo apt-get purge docker podman | |
- name: Run nox | |
run: nox -s tests-3.12 -- -m 'not containers' | |
coverage: | |
runs-on: ubuntu-latest | |
if: github.event_name == 'schedule' || github.event_name == 'workflow_dispatch' | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: 3.12 | |
allow-prereleases: true | |
- name: Set up uv | |
uses: hynek/setup-cached-uv@v2 | |
- name: Set up nox | |
uses: wntrblm/[email protected] | |
- name: Run nox | |
run: nox -s tests-3.12 -- coverage github | |
automerge: | |
needs: ci | |
runs-on: ubuntu-latest | |
if: github.event_name == 'pull_request' && github.actor == 'dependabot[bot]' | |
permissions: | |
contents: write | |
pull-requests: write | |
steps: | |
- name: Automatically merge allowed PRs | |
run: gh pr merge --auto --merge "$PR_URL" | |
env: | |
PR_URL: ${{ github.event.pull_request.html_url }} | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | |
packaging: | |
needs: ci | |
runs-on: ubuntu-latest | |
outputs: | |
version: ${{ steps.version.outputs.tag }} | |
environment: | |
name: PyPI | |
url: https://pypi.org/p/bowtie-json-schema | |
permissions: | |
contents: write | |
id-token: write | |
attestations: write | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Set up Python | |
uses: actions/setup-python@v5 | |
with: | |
python-version: "3.x" | |
- name: Set up uv | |
uses: hynek/setup-cached-uv@v2 | |
- name: Set up nox | |
uses: wntrblm/[email protected] | |
- name: Install dependencies | |
run: uv pip install --system build | |
- name: Create packages | |
run: python -m build . | |
- name: Generate attestation for wheels | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
uses: actions/attest-build-provenance@v1 | |
with: | |
subject-path: "dist/*.whl" | |
- name: Publish to PyPI | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
uses: pypa/gh-action-pypi-publish@release/v1 | |
- name: Create a Release | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
uses: softprops/action-gh-release@v2 | |
with: | |
generate_release_notes: true | |
- name: Current version | |
id: version | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') | |
run: echo "tag=${GITHUB_REF#refs/*/}" >> $GITHUB_OUTPUT | |
report: | |
needs: packaging | |
uses: ./.github/workflows/report.yml | |
with: | |
bowtie-version: ${{ needs.packaging.outputs.version }} | |
if: github.event_name == 'push' && startsWith(github.event.ref, 'refs/tags') |