Skip to content

adding moxie

adding moxie #1397

Workflow file for this run

# NOTE: This name appears in GitHub's Checks API and in workflow's status badge.
name: ci-default
env:
TURBO_TEAM: ${{ secrets.TURBO_TEAM }}
TURBO_TOKEN: ${{ secrets.TURBO_TOKEN }}
DOCKER_PLATFORM: "amd64"
# Trigger the workflow when:
on:
# A push occurs to one of the matched branches.
push:
branches:
- main
# Or when a pull request event occurs for a pull request against one of the
# matched branches.
pull_request:
branches:
- main
# Allows you to run this workflow manually from the Actions tab
workflow_dispatch:
# Cancel in progress jobs on new pushes.
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
lint-and-test:
# NOTE: This name appears in GitHub's Checks API.
name: test
environment: testing
runs-on: ubuntu-latest
strategy:
matrix:
component: ["node", "python"]
steps:
- name: Checkout code
uses: actions/checkout@v4
with:
# Check out pull request's HEAD commit instead of the merge commit to
# prevent gitlint from failing due to too long commit message titles,
# e.g. "Merge 3e621938d65caaa67f8e35d145335d889d470fc8 into 19a39b2f66cd7a165082d1486b2f1eb36ec2354a".
ref: ${{ github.event.pull_request.head.sha }}
# Fetch all history so gitlint can check the relevant commits.
fetch-depth: "0"
- name: Setup pnpm
uses: pnpm/action-setup@v4
with:
version: 9
run_install: |
- recursive: true
args: [--frozen-lockfile, --strict-peer-dependencies]
- name: "Setup Python, Poetry and Dependencies"
uses: packetcoders/action-setup-cache-python-poetry@main
with:
python-version: 3.12
poetry-version: 1.8.2
- name: Set up Node.js 20
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Build (node)
run: |
pnpm build
# Always run this step so that all linting errors can be seen at once.
if: ${{ always() && matrix.component == 'node' }}
- name: Lint (node)
run: |
pnpm lint
# Always run this step so that all linting errors can be seen at once.
if: ${{ always() && matrix.component == 'node' }}
- name: Test (node)
run: |
pnpm test
# Always run this step so that all linting errors can be seen at once.
if: ${{ always() && matrix.component == 'node' }}
- name: Validate data (node)
run: |
pnpm validate
# Always run this step so that all linting errors can be seen at once.
if: ${{ always() && matrix.component == 'node' }}
- name: Type check (python)
run: |
pnpm pyright
if: ${{ always() && matrix.component == 'python' }}
- name: Lint (python)
run: |
poetry run ruff check
if: ${{ always() && matrix.component == 'python' }}