From 2b1702a4a0f8acc40a8dba497c2e5471855eb292 Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 30 Sep 2022 17:22:55 -0700 Subject: [PATCH 1/2] fix(ses): Fix incompatible spelling --- .github/workflows/ci.yml | 8 ++++---- packages/ses/package.json | 2 +- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index f0135d4274..92d6bf30ec 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -305,8 +305,8 @@ jobs: run: cd packages/ses-integration-test && yarn test:pre-release - platform-compatability-test: - name: platform-compatability-test + platform-compatibility-test: + name: platform-compatibility-test # begin macro @@ -357,5 +357,5 @@ jobs: - name: Echo node version run: node --version - - name: Run yarn test:platform-compatability - run: cd packages/ses && yarn test:platform-compatability + - name: Run yarn test:platform-compatibility + run: cd packages/ses && yarn test:platform-compatibility diff --git a/packages/ses/package.json b/packages/ses/package.json index 4e96380cfa..9d76b6ad55 100644 --- a/packages/ses/package.json +++ b/packages/ses/package.json @@ -56,7 +56,7 @@ "prepublish": "yarn run clean && yarn build", "qt": "ava", "test": "tsd && ava", - "test:platform-compatability": "node test/package/test.cjs" + "test:platform-compatibility": "node test/package/test.cjs" }, "devDependencies": { "@endo/compartment-mapper": "^0.7.13", From 92194e383da0f270d8be556cd5798e9bc129f475 Mon Sep 17 00:00:00 2001 From: Kris Kowal Date: Fri, 30 Sep 2022 17:23:27 -0700 Subject: [PATCH 2/2] chore(ses): Advance lowest supported Node.js compatibility test from 10 to 12 --- .github/workflows/ci.yml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 92d6bf30ec..ce16114e29 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -349,10 +349,10 @@ jobs: - name: 'build' run: yarn run build - - name: 'switch to node v10' + - name: 'switch to node v12' uses: actions/setup-node@v1 with: - node-version: '10.x' + node-version: '12.x' - name: Echo node version run: node --version