-
Notifications
You must be signed in to change notification settings - Fork 162
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update Test262 to latest Node19-compatible tests * Update GH actions to latest versions * Test262 against Node 14, 16, 18, and 19 * Use Node19 on all other actions and tests * Extend expected-failures.txt handling so some tests can be expected to fail only on some Node versions.
- Loading branch information
1 parent
4211309
commit 3366a88
Showing
6 changed files
with
115 additions
and
42 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,18 +7,18 @@ jobs: | |
deploy: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v2 | ||
with: | ||
persist-credentials: false | ||
- name: use node.js v15.x | ||
uses: actions/setup-node@v1 | ||
with: | ||
node-version: 15.x | ||
- run: npm ci | ||
- run: npm run build | ||
- uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: out | ||
CLEAN: true | ||
- uses: actions/checkout@v3 | ||
with: | ||
persist-credentials: false | ||
- name: use node.js v19.x | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: 19.x | ||
- run: npm ci | ||
- run: npm run build | ||
- uses: JamesIves/[email protected] | ||
with: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} | ||
BRANCH: gh-pages | ||
FOLDER: out | ||
CLEAN: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,20 @@ | ||
# expected failures unrelated to Node versions | ||
intl402/Temporal/TimeZone/prototype/getNextTransition/transition-at-instant-boundaries.js | ||
intl402/Temporal/TimeZone/prototype/getPreviousTransition/transition-at-instant-boundaries.js | ||
|
||
# Intl.supportedValuesOf("timeZone") is only available starting in Node 18 | ||
intl402/Temporal/TimeZone/supported-values-of.js 18 | ||
|
||
# Before Node 16, dateStyle/timeStyle options didn't conflict with other options | ||
intl402/Temporal/Instant/prototype/toLocaleString/options-conflict.js 16 | ||
intl402/Temporal/PlainDate/prototype/toLocaleString/options-conflict.js 16 | ||
intl402/Temporal/PlainDateTime/prototype/toLocaleString/options-conflict.js 16 | ||
intl402/Temporal/PlainTime/prototype/toLocaleString/options-conflict.js 16 | ||
intl402/Temporal/ZonedDateTime/prototype/toLocaleString/options-conflict.js 16 | ||
|
||
# Before Node 16, calling an uncallable value seems to throw a RangeError, not a TypeError | ||
intl402/Temporal/PlainYearMonth/prototype/toLocaleString/timezone-getoffsetnanosecondsfor-not-callable.js 16 | ||
intl402/Temporal/PlainMonthDay/prototype/toLocaleString/timezone-getoffsetnanosecondsfor-not-callable.js 16 | ||
intl402/Temporal/PlainDate/prototype/toLocaleString/timezone-getoffsetnanosecondsfor-not-callable.js 16 | ||
intl402/Temporal/PlainDateTime/prototype/toLocaleString/timezone-getoffsetnanosecondsfor-not-callable.js 16 | ||
intl402/Temporal/PlainTime/prototype/toLocaleString/timezone-getoffsetnanosecondsfor-not-callable.js 16 |
Submodule test262
updated
24 files