[bbrt] New state model #7351
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: Labs Prototypes CI | |
on: | |
push: | |
branches: ["main"] | |
pull_request: | |
branches: ["main"] | |
jobs: | |
build: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
node-version: | |
- 20.x | |
# - 21.x left here for testing when the node test runnner might be misbahaving | |
python-version: [3.11] | |
steps: | |
- uses: actions/checkout@v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
cache: "npm" | |
- name: Use python ${{ matrix.python-version }} | |
uses: actions/setup-python@v5 | |
with: | |
python-version: ${{ matrix.python-version }} | |
cache: "pip" | |
- run: pip install packages/breadboard-python/breadboard_python | |
- run: pip install packages/breadboard-python/breadboard_colab | |
- uses: google/wireit@setup-github-actions-caching/v2 | |
if: github.event_name != 'pull_request' # For PRs, caching is disabled to ensure a clean build | |
- name: Clean Installing dependencies | |
run: npm run ci | |
- name: Generating the build | |
run: npm run build | |
- name: Checking the code quality | |
run: npm run lint | |
- name: Check Dev Dependencies with Syncpack | |
run: npm run syncpack:check:dev | |
- name: Check Prod Dependencies with Syncpack | |
run: npm run syncpack:check:prod | |
- name: Checking the code formatting | |
run: npm run check:format | |
- name: Running tests | |
run: npm run test |