From 60e8ccb1155072f0c8b56538ec4f6799e6061d90 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Fri, 21 Mar 2025 12:22:31 -0500 Subject: [PATCH 1/4] add CODEOWNERS, update bug report issue template --- .github/ISSUE_TEMPLATE/CODEOWNERS | 5 +++++ .github/ISSUE_TEMPLATE/bug_report.md | 2 +- 2 files changed, 6 insertions(+), 1 deletion(-) create mode 100644 .github/ISSUE_TEMPLATE/CODEOWNERS diff --git a/.github/ISSUE_TEMPLATE/CODEOWNERS b/.github/ISSUE_TEMPLATE/CODEOWNERS new file mode 100644 index 0000000..3b02d0d --- /dev/null +++ b/.github/ISSUE_TEMPLATE/CODEOWNERS @@ -0,0 +1,5 @@ +# See GitHub's docs for more details: +# https://help.github.com/en/github/creating-cloning-and-archiving-repositories/about-code-owners + +# TypeScript Team +* @workos/typescript diff --git a/.github/ISSUE_TEMPLATE/bug_report.md b/.github/ISSUE_TEMPLATE/bug_report.md index 19d955d..1a25e33 100644 --- a/.github/ISSUE_TEMPLATE/bug_report.md +++ b/.github/ISSUE_TEMPLATE/bug_report.md @@ -3,7 +3,7 @@ name: Bug report about: Create a report to help us improve title: '' labels: '' -assignees: PaulAsjes +assignees: nicknisi --- From 1e199c632615b87436b43ac576c4b3ace8fc22a4 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Fri, 21 Mar 2025 13:17:47 -0500 Subject: [PATCH 2/4] trigger CI From 5314fcd387d8f1504369f1bff98d27fb8cfff3db Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Fri, 21 Mar 2025 13:18:44 -0500 Subject: [PATCH 3/4] trigger CI From 1a5adeaaa76b43be57183ebac7e34ee6626f2689 Mon Sep 17 00:00:00 2001 From: Nick Nisi Date: Fri, 21 Mar 2025 13:29:42 -0500 Subject: [PATCH 4/4] remove node 18 testing --- .github/workflows/ci.yml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 588ae73..7384ebe 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -18,7 +18,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Install Dependencies run: npm install - name: Prettier @@ -31,7 +31,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Install Dependencies run: npm install - name: Lint @@ -44,7 +44,7 @@ jobs: - uses: actions/checkout@v4 - uses: actions/setup-node@v4 with: - node-version: 18 + node-version: 20 - name: Install Dependencies run: npm install - name: Build @@ -55,7 +55,7 @@ jobs: runs-on: ubuntu-latest strategy: matrix: - node: [18, 20, 22] + node: [20, 22] steps: - uses: actions/checkout@v4 - uses: actions/setup-node@v4