chore(dev environment): Make Devbox single source of truth for dev environment #6604
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: "Validate OpenAPI-Specifications" | |
on: | |
pull_request: | |
jobs: | |
validate: | |
runs-on: ubuntu-latest | |
steps: | |
- name: Get Repository content | |
uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4 | |
- name: Install devbox | |
uses: jetify-com/devbox-install-action@734088efddca47cf44ff8a09289c6d0e51b73218 # v0.12.0 | |
with: | |
enable-cache: 'true' | |
- name: Make devbox shellenv available | |
run: | | |
eval "$(devbox shellenv)" | |
printenv >> "$GITHUB_ENV" | |
- name: Validating OpenAPI Specifications | |
shell: bash | |
run: | | |
#! /usr/bin/env bash | |
set -eu -o pipefail | |
make validate-openapi-specs |