Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/CODEOWNERS
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
* @iveelsm
19 changes: 0 additions & 19 deletions .github/ISSUE_TEMPLATE/documentation.md

This file was deleted.

25 changes: 2 additions & 23 deletions .github/PULL_REQUEST_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -1,9 +1,3 @@
## Related Issues

<!-- Insert related issues here using #issue_number -->

## Description

<!--
Provide a brief description of the changes:

Expand All @@ -12,21 +6,6 @@ Provide a brief description of the changes:
* What is the expected behavior?
-->

## Type of Change

- [ ] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] Breaking change (fix or feature that would cause existing functionality to not work as expected)
- [ ] Documentation update

## Testing Notes

<!-- Use this section to identify notes about testing this to any reviewers -->

## Checklist
## Related Issues

- [ ] Tests written (both integration and unit)
- [ ] Manual testing performed
- [ ] Documentation updated
- [ ] Code follows the project's style guidelines
- [ ] Self-review of code completed
<!-- Insert related issues here using #issue_number -->
70 changes: 70 additions & 0 deletions .github/workflows/build.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,70 @@
name: Build

on:
push:
branches:
- "*"
pull_request:
branches:
- main

jobs:
build:
name: Compile
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x, 20.x, 22.x, 24.x]
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Setup Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v6
with:
node-version: ${{ matrix.node-version }}
cache: "npm"

- name: Install dependencies
run: npm ci

- name: Build
run: npm run build

lint:
name: Lint
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: npm

- name: Install dependencies
run: npm ci

- name: Lint
run: npm run lint

test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v6

- name: Setup Node.js
uses: actions/setup-node@v6
with:
node-version-file: .nvmrc
cache: npm

- name: Install dependencies
run: npm ci

- name: Lint
run: npm run test
91 changes: 0 additions & 91 deletions .github/workflows/ci.yml

This file was deleted.

1 change: 1 addition & 0 deletions .nvmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
24.13.1
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
"node": ">=18.0.0"
},
"scripts": {
"build": "npm run clean && npm run build:compile && npm run test",
"build": "npm run clean && npm run build:compile",
"build:compile": "npm run build:esm && npm run build:cjs && npm run build:cjs-package",
"build:esm": "tsc --project tsconfig.json",
"build:cjs": "tsc --project tsconfig.cjs.json",
Expand Down
56 changes: 56 additions & 0 deletions release-please-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,56 @@
{
"$schema": "https://raw.githubusercontent.com/googleapis/release-please/main/schemas/config.json",
"include-component-in-tag": false,
"include-v-in-tag": true,
"tag-separator": "/",
"release-type": "node",
"packages": {
".": {}
},
"changelog-sections": [
{
"type": "feat",
"section": "Features"
},
{
"type": "fix",
"section": "Bug Fixes"
},
{
"type": "revert",
"section": "Reverts"
},
{
"type": "perf",
"section": "Refactors"
},
{
"type": "refactor",
"section": "Refactors"
},
{
"type": "chore",
"section": "Chores"
},
{
"type": "ci",
"section": "Chores"
},
{
"type": "build",
"section": "Chores"
},
{
"type": "style",
"section": "Chores"
},
{
"type": "docs",
"section": "Docs"
},
{
"type": "test",
"section": "Tests"
}
]
}