Skip to content

Editorial updates to 402-related text #129

Editorial updates to 402-related text

Editorial updates to 402-related text #129

Workflow file for this run

name: Run tests
on:
pull_request:
push:
branches:
- main
jobs:
test-polyfill:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
- name: use node.js v19.x
uses: actions/setup-node@v3
with:
node-version: 19.x
- run: npm ci
- run: npm run refresh-polyfill-ci
- run: npm run test-demitasse
env:
HEAD_SHA: ${{ github.event.pull_request.head.sha }}
test-test262:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v3
# we set up submidules manually in npm run refresh-polyfill-ci
# with:
# submodules: true
- name: use node.js v19.x
uses: actions/setup-node@v3
with:
node-version: 19.x
- run: npm ci
- run: npm run refresh-polyfill-ci
- run: npm run test262
env:
HEAD_SHA: ${{ github.event.pull_request.head.sha }}