ci: add plugins build/test job
This commit is contained in:
34
.github/workflows/main.yml
vendored
34
.github/workflows/main.yml
vendored
@@ -170,7 +170,6 @@ jobs:
|
|||||||
run: pnpm dev:generate-graphql-schema graphql-schema-gen
|
run: pnpm dev:generate-graphql-schema graphql-schema-gen
|
||||||
|
|
||||||
build-packages:
|
build-packages:
|
||||||
name: Build Packages
|
|
||||||
runs-on: ubuntu-latest
|
runs-on: ubuntu-latest
|
||||||
needs: core-build
|
needs: core-build
|
||||||
strategy:
|
strategy:
|
||||||
@@ -206,3 +205,36 @@ jobs:
|
|||||||
|
|
||||||
- name: Build ${{ matrix.pkg }}
|
- name: Build ${{ matrix.pkg }}
|
||||||
run: pnpm turbo run build --filter=${{ matrix.pkg }}
|
run: pnpm turbo run build --filter=${{ matrix.pkg }}
|
||||||
|
|
||||||
|
plugins:
|
||||||
|
runs-on: ubuntu-latest
|
||||||
|
needs: core-build
|
||||||
|
strategy:
|
||||||
|
fail-fast: false
|
||||||
|
matrix:
|
||||||
|
pkg:
|
||||||
|
- plugin-cloud
|
||||||
|
|
||||||
|
steps:
|
||||||
|
- name: Use Node.js 18
|
||||||
|
uses: actions/setup-node@v3
|
||||||
|
with:
|
||||||
|
node-version: 18
|
||||||
|
|
||||||
|
- name: Install pnpm
|
||||||
|
uses: pnpm/action-setup@v2
|
||||||
|
with:
|
||||||
|
version: 8
|
||||||
|
run_install: false
|
||||||
|
|
||||||
|
- name: Restore build
|
||||||
|
uses: actions/cache@v3
|
||||||
|
with:
|
||||||
|
path: ./*
|
||||||
|
key: ${{ github.sha }}-${{ github.run_number }}
|
||||||
|
|
||||||
|
- name: Build ${{ matrix.pkg }}
|
||||||
|
run: pnpm turbo run build --filter=${{ matrix.pkg }}
|
||||||
|
|
||||||
|
- name: Test ${{ matrix.pkg }}
|
||||||
|
run: pnpm --filter ${{ matrix.pkg }} run test
|
||||||
|
|||||||
Reference in New Issue
Block a user