From b7579b5d2fa6133087affbe248328ed4541b66da Mon Sep 17 00:00:00 2001 From: psibean Date: Tue, 6 Aug 2024 21:12:20 +0930 Subject: [PATCH 1/2] build: build and test against versioned branches --- .github/workflows/build-and-test.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/build-and-test.yml b/.github/workflows/build-and-test.yml index 421453d..6013b3b 100644 --- a/.github/workflows/build-and-test.yml +++ b/.github/workflows/build-and-test.yml @@ -5,9 +5,9 @@ name: Build and Test on: push: - branches: [ "main" ] + branches: [ "main", "v[0-9].x.x" ] pull_request: - branches: [ "main" ] + branches: [ "main", "v[0-9].x.x" ] permissions: checks: write From 40f8eb5fd28ba97a05cfddb861ac280227c74d18 Mon Sep 17 00:00:00 2001 From: psibean Date: Tue, 6 Aug 2024 21:20:16 +0930 Subject: [PATCH 2/2] chore: remove unnecessary default export --- src/types.ts | 2 -- 1 file changed, 2 deletions(-) diff --git a/src/types.ts b/src/types.ts index 811d8a7..142d90c 100644 --- a/src/types.ts +++ b/src/types.ts @@ -176,5 +176,3 @@ export interface DoubleCsrfUtilities { */ doubleCsrfProtection: doubleCsrfProtection; } - -export {}; \ No newline at end of file