Remove groupedInstanceKeys
property from parentKeys
#1007
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: CI | |
on: | |
pull_request: | |
branches: ["master", "stable"] | |
types: [opened, synchronize, reopened, ready_for_review] | |
jobs: | |
check-changeset-files: | |
if: ${{ !github.event.pull_request.draft && !startsWith(github.event.pull_request.title, 'Release packages [publish docs]') }} | |
runs-on: ubuntu-latest | |
name: Check changesets | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
with: | |
fetch-depth: 0 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8.6.2 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install -w | |
- name: Run check | |
run: pnpm check --since origin/master | |
build: | |
if: '!github.event.pull_request.draft' | |
runs-on: ubuntu-latest | |
name: Lint Build and run Tests | |
steps: | |
- name: Checkout | |
uses: actions/checkout@v3 | |
- name: Install pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8.6.2 | |
- name: Use Node.js 18 | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: 'pnpm' | |
- name: Install dependencies | |
run: pnpm install | |
- name: Run prettier | |
run: pnpm prettier | |
- name: Build, Lint, Test | |
env: | |
NODE_ENV: "development" | |
run: pnpm lage build lint cover |