Skip to content

[IDP-1765] Add client generation & Plugin system #76

[IDP-1765] Add client generation & Plugin system

[IDP-1765] Add client generation & Plugin system #76

Workflow file for this run

name: CI
# Pnpm setup based on https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CI: true
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- name: Setup project
uses: ./.github/actions/setup
- name: Build packages
run: pnpm build
- name: Lint packages
run: pnpm lint
- name: Test packages
run: pnpm test