From 39dda64556901d8658d43bc309ca897b0f1287ae Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Fri, 8 Dec 2023 11:06:15 -0500 Subject: [PATCH 1/3] Fix Set.entries() --- Reflect.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Reflect.ts b/Reflect.ts index 62e6080..b571c0d 100644 --- a/Reflect.ts +++ b/Reflect.ts @@ -1725,7 +1725,7 @@ namespace Reflect { clear(): void { this._map.clear(); } keys() { return this._map.keys(); } values() { return this._map.keys(); } - entries() { return this._map.keys(); } + entries() { return this._map.entries(); } "@@iterator"() { return this.keys(); } [iteratorSymbol]() { return this.keys(); } }; From 4e604aa2d5b899317f45ecc532c51a34122a6773 Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Wed, 13 Dec 2023 11:53:32 -0500 Subject: [PATCH 2/3] Create ci.yml --- .github/workflows/ci.yml | 28 ++++++++++++++++++++++++++++ 1 file changed, 28 insertions(+) create mode 100644 .github/workflows/ci.yml diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml new file mode 100644 index 0000000..0a0f5be --- /dev/null +++ b/.github/workflows/ci.yml @@ -0,0 +1,28 @@ +name: Build + +on: + push: + branches: [ "main", "release-*" ] + pull_request: + branches: [ "main", "release-*" ] + +jobs: + build: + runs-on: ubuntu-latest + + strategy: + matrix: + node-version: [14.x, 16.x, 18.x] + + steps: + - uses: actions/checkout@v3 + + - name: Use Node.js ${{ matrix.node-version }} + uses: actions/setup-node@v3 + with: + node-version: ${{ matrix.node-version }} + + - name: Build + run: | + npm install + gulp From f16259f895dbf1b78d3f0017866c8a887b7b402e Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Wed, 13 Dec 2023 11:54:41 -0500 Subject: [PATCH 3/3] Update ci.yml --- .github/workflows/ci.yml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a0f5be..5deb107 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -12,7 +12,7 @@ jobs: strategy: matrix: - node-version: [14.x, 16.x, 18.x] + node-version: [10.x] steps: - uses: actions/checkout@v3