This repository has been archived by the owner on Apr 26, 2024. It is now read-only.
Update README.md (#106) #90
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
name: Polyfill test | |
on: | |
push: | |
branches: [ main ] | |
pull_request: | |
jobs: | |
test262: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
with: | |
submodules: recursive | |
- name: Install dev deps | |
run: npm install | |
- name: Run test262 tests | |
run: npm run test262 | |
test: | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v2 | |
- name: Install dev deps | |
run: npm install | |
- name: Test the polyfill | |
run: npm run test |