-
Notifications
You must be signed in to change notification settings - Fork 2.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
add a "cleanup-checks" trigger action
- Loading branch information
Showing
4 changed files
with
66 additions
and
5 deletions.
There are no files selected for viewing
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
name: Clean up Prettier, Size-limit, and Api-Extractor | ||
|
||
on: | ||
workflow_dispatch: | ||
inputs: | ||
prNumber: | ||
description: "target PR" | ||
required: true | ||
type: number | ||
|
||
jobs: | ||
cleanup: | ||
name: release:next | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Checkout repo | ||
uses: actions/checkout@v4 | ||
with: | ||
ref: refs/pull/${{ inputs.prNumber }}/merge | ||
|
||
- name: Setup Node.js 18.x | ||
uses: actions/setup-node@v4 | ||
with: | ||
node-version: 18.x | ||
|
||
- name: Install dependencies (with cache) | ||
uses: bahmutov/npm-install@v1 | ||
|
||
- name: Run build | ||
run: npm run build | ||
|
||
- name: Run Api-Extractor | ||
run: npm run extract-api | ||
env: | ||
CI: false | ||
|
||
- name: Run prettier | ||
run: npm run format | ||
|
||
- name: Update size-limit | ||
run: npm run update-size-limits | ||
|
||
# commit & push | ||
# if there is a "trigger this action" comment in the PR, remove it | ||
|
||
# - name: Create comment | ||
# if: ${{ steps.added-files.outputs.changesets != '' }} | ||
# uses: peter-evans/[email protected] | ||
# with: | ||
# issue-number: ${{ github.event.issue.number }} | ||
# body: | | ||
# A new release has been made for this PR. You can install it with `npm i @apollo/client@${{ steps.get-version.outputs.version }}`. |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
{ | ||
"dist/apollo-client.min.cjs": 37972, | ||
"import { ApolloClient, InMemoryCache, HttpLink } from \"dist/index.js\" (production)": 32017 | ||
} |
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