Skip to content

Commit 1e352f5

Browse files
committed
chore: move over monorepo-coverage-badges
0 parents  commit 1e352f5

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

60 files changed

+8781
-0
lines changed

.changeset/README.md

+8
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,8 @@
1+
# Changesets
2+
3+
Hello and welcome! This folder has been automatically generated by `@changesets/cli`, a build tool that works
4+
with multi-package repos, or single-package repos to help you version and publish your code. You can
5+
find the full documentation for it [in our repository](https://github.com/changesets/changesets)
6+
7+
We have a quick list of common questions to get you started engaging with this project in
8+
[our documentation](https://github.com/changesets/changesets/blob/main/docs/common-questions.md)

.changeset/config.json

+11
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,11 @@
1+
{
2+
"$schema": "https://unpkg.com/@changesets/[email protected]/schema.json",
3+
"changelog": "@changesets/cli/changelog",
4+
"commit": false,
5+
"fixed": [],
6+
"linked": [],
7+
"access": "public",
8+
"baseBranch": "main",
9+
"updateInternalDependencies": "patch",
10+
"ignore": []
11+
}

.eslintignore

+7
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
/dist
2+
/node_modules
3+
/lib
4+
coverage
5+
*.json
6+
*.yml
7+
*.yaml

.eslintrc.cjs

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
1+
module.exports = {
2+
extends: "./configs/.eslintrc.cjs",
3+
};

.gitattributes

+1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
* text eol=lf
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
name: Prepare Environment
2+
description: Prepare the environment for the build
3+
inputs:
4+
node-version:
5+
description: The Node.js version to use
6+
required: false
7+
default: '16'
8+
runs:
9+
using: composite
10+
steps:
11+
- name: Install pnpm
12+
uses: pnpm/action-setup@v2
13+
14+
- name: Install Node
15+
uses: actions/setup-node@v3
16+
with:
17+
cache: pnpm
18+
node-version: ${{ inputs.node-version }}
19+
20+
- name: Install dependencies
21+
shell: bash
22+
run: pnpm install --frozen-lockfile

.github/renovate.json

+4
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,4 @@
1+
{
2+
"$schema": "https://docs.renovatebot.com/renovate-schema.json",
3+
"extends": ["github>Recodive/Recodive:renovate-config"]
4+
}

.github/workflows/CI.yml

+73
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,73 @@
1+
name: Ecosystem
2+
on: [push]
3+
jobs:
4+
"Core":
5+
name: '@PostgreSQL-Typed/Core'
6+
uses: ./.github/workflows/package.yml
7+
with:
8+
package: postgresql-typed
9+
"PostgreSQL-Caching":
10+
name: PostgreSQL-Caching
11+
uses: ./.github/workflows/package.yml
12+
with:
13+
package: postgresql-caching
14+
"OIDs":
15+
name: '@PostgreSQL-Typed/OIDs'
16+
uses: ./.github/workflows/package.yml
17+
with:
18+
package: '@postgresql-typed/oids'
19+
"Parsers":
20+
name: '@PostgreSQL-Typed/Parsers'
21+
uses: ./.github/workflows/package.yml
22+
with:
23+
package: '@postgresql-typed/parsers'
24+
"CLI":
25+
name: '@PostgreSQL-Typed/CLI'
26+
uses: ./.github/workflows/package.yml
27+
with:
28+
package: '@postgresql-typed/cli'
29+
"UI":
30+
name: '@PostgreSQL-Typed/UI'
31+
uses: ./.github/workflows/package.yml
32+
with:
33+
package: '@postgresql-typed/ui'
34+
coverage:
35+
name: Coverage
36+
needs: [Core, PostgreSQL-Caching, OIDs, Parsers, CLI, UI]
37+
runs-on: ubuntu-latest
38+
steps:
39+
- name: Checkout repository
40+
uses: actions/checkout@v3
41+
42+
- name: Prepare environment
43+
uses: ./.github/actions/prepareEnvironment
44+
45+
- name: Download coverage
46+
uses: actions/download-artifact@v3
47+
with:
48+
name: Coverage
49+
50+
- name: Check badges
51+
run: pnpm badges:ci
52+
changesets:
53+
name: Publish
54+
needs: coverage
55+
runs-on: ubuntu-latest
56+
if: github.ref == 'refs/heads/main'
57+
steps:
58+
- name: Checkout repository
59+
uses: actions/checkout@v3
60+
61+
- name: Prepare environment
62+
uses: ./.github/actions/prepareEnvironment
63+
64+
- name: Create Release Pull Request or Publish to npm
65+
id: changesets
66+
uses: changesets/action@v1
67+
with:
68+
publish: pnpm release
69+
commit: 'chore: release package(s)'
70+
title: 'chore: release package(s)'
71+
env:
72+
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
73+
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}

.github/workflows/package.yml

+81
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,81 @@
1+
name: Package
2+
3+
on:
4+
workflow_call:
5+
inputs:
6+
package:
7+
required: true
8+
type: string
9+
10+
jobs:
11+
lint:
12+
runs-on: ubuntu-latest
13+
name: Lint
14+
steps:
15+
- name: Checkout repository
16+
uses: actions/checkout@v3
17+
18+
- name: Prepare environment
19+
uses: ./.github/actions/prepareEnvironment
20+
21+
- name: Run lint
22+
run: pnpm lint:ci --filter ${{ inputs.package }}
23+
24+
build:
25+
runs-on: ubuntu-latest
26+
name: Build
27+
steps:
28+
- name: Checkout repository
29+
uses: actions/checkout@v3
30+
31+
- name: Prepare environment
32+
uses: ./.github/actions/prepareEnvironment
33+
34+
- name: Run build
35+
run: pnpm build --filter ${{ inputs.package }}
36+
37+
"Test":
38+
needs: build
39+
name: Test Node-${{matrix.node}}
40+
runs-on: ubuntu-latest
41+
strategy:
42+
fail-fast: false
43+
matrix:
44+
node: ["16", "17", "current", "latest"]
45+
services:
46+
postgres:
47+
image: postgres:${{ matrix.postgres }}
48+
env:
49+
POSTGRES_USER: postgres
50+
POSTGRES_DB: postgres
51+
POSTGRES_PASSWORD: password
52+
ports:
53+
- 5432:5432
54+
options: >-
55+
--health-cmd pg_isready
56+
--health-interval 10s
57+
--health-timeout 5s
58+
--health-retries 5
59+
steps:
60+
- name: Checkout repository
61+
uses: actions/checkout@v3
62+
63+
- name: Prepare environment
64+
uses: ./.github/actions/prepareEnvironment
65+
with:
66+
node-version: ${{ matrix.node }}
67+
68+
- name: Run build
69+
run: pnpm build --filter ${{ inputs.package }}
70+
71+
- name: Run tests
72+
run: pnpm test:ci --filter ${{ inputs.package }}
73+
74+
- name: Upload coverage
75+
if: ${{matrix.node == 'current' && matrix.postgres == 'latest'}}
76+
uses: actions/upload-artifact@v3
77+
with:
78+
name: Coverage
79+
path: packages/*/coverage/coverage-summary.json
80+
#if-no-files-found: error
81+
retention-days: 1
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,99 @@
1+
#See https://github.com/backstage/backstage/blob/master/.github/workflows/sync_renovate-changesets.yml
2+
name: Sync Renovate changeset
3+
on:
4+
pull_request_target:
5+
paths:
6+
- '.github/workflows/sync_renovate-changesets.yml'
7+
- '**/pnpm-lock.yaml'
8+
9+
jobs:
10+
generate-changeset:
11+
permissions:
12+
contents: write
13+
runs-on: ubuntu-latest
14+
if: github.actor == 'renovate[bot]' && github.repository == 'PostgreSQL-Typed/PostgreSQL-Typed'
15+
steps:
16+
- name: Checkout
17+
uses: actions/checkout@v3
18+
with:
19+
fetch-depth: 2
20+
ref: ${{ github.head_ref }}
21+
- name: Configure Git
22+
run: |
23+
git config --global user.email [email protected]
24+
git config --global user.name 'Github changeset workflow'
25+
- name: Generate changeset
26+
uses: actions/github-script@v6
27+
with:
28+
script: |
29+
const { promises: fs } = require("fs");
30+
// Parses package.json files and returns the package names
31+
async function getPackagesNames(files) {
32+
const names = [];
33+
for (const file of files) {
34+
const data = JSON.parse(await fs.readFile(file, "utf8"));
35+
if (!data.private) {
36+
names.push(data.name);
37+
}
38+
}
39+
return names;
40+
}
41+
42+
async function createChangeset(fileName, packageBumps, packages) {
43+
let message = "";
44+
for (const [pkg, bump] of packageBumps) {
45+
message = message + `Updated dependency \`${pkg}\` to \`${bump}\`.\n`;
46+
}
47+
48+
const pkgs = packages.map((pkg) => `'${pkg}': patch`).join("\n");
49+
const body = `---\n${pkgs}\n---\n\n${message.trim()}\n`;
50+
await fs.writeFile(fileName, body);
51+
}
52+
53+
async function getBumps(files) {
54+
const bumps = new Map();
55+
for (const file of files) {
56+
const { stdout: changes } = await exec.getExecOutput("git", [
57+
"show",
58+
file,
59+
]);
60+
for (const change of changes.split("\n")) {
61+
if (!change.startsWith("+ ")) {
62+
continue;
63+
}
64+
const match = change.match(/"(.*?)"/g);
65+
bumps.set(match[0].replace(/"/g, ""), match[1].replace(/"/g, ""));
66+
}
67+
}
68+
return bumps;
69+
}
70+
71+
const branch = await exec.getExecOutput("git branch --show-current");
72+
if (!branch.stdout.startsWith("renovate/")) {
73+
console.log("Not a renovate branch, skipping");
74+
return;
75+
}
76+
const diffOutput = await exec.getExecOutput("git diff --name-only HEAD~1");
77+
const diffFiles = diffOutput.stdout.split("\n");
78+
if (diffFiles.find((f) => f.startsWith(".changeset"))) {
79+
console.log("Changeset already exists, skipping");
80+
return;
81+
}
82+
const files = diffFiles
83+
.filter((file) => file !== "package.json") // skip root package.json
84+
.filter((file) => file.includes("package.json"));
85+
const packageNames = await getPackagesNames(files);
86+
if (!packageNames.length) {
87+
console.log("No package.json changes to published packages, skipping");
88+
return;
89+
}
90+
const { stdout: shortHash } = await exec.getExecOutput(
91+
"git rev-parse --short HEAD"
92+
);
93+
const fileName = `.changeset/renovate-${shortHash.trim()}.md`;
94+
95+
const packageBumps = await getBumps(files);
96+
await createChangeset(fileName, packageBumps, packageNames);
97+
await exec.exec("git", ["add", fileName]);
98+
await exec.exec("git commit -C HEAD --amend --no-edit");
99+
await exec.exec("git push --force");

0 commit comments

Comments
 (0)