Editorial: Add Iterator
to global object properties (#3456)
#185
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: 'ecma-262 deploy' | |
on: | |
push: | |
branches: | |
- main | |
jobs: | |
deploy: | |
name: 'deploy github pages' | |
runs-on: ubuntu-22.04 | |
if: ${{ github.repository == 'tc39/ecma262' }} | |
steps: | |
- uses: actions/checkout@v4 | |
- uses: ljharb/actions/node/install@6bc39109c48f74895ad72ec03ca0bb4e4da2fa3f | |
name: 'nvm install lts/* && npm ci --no-audit' | |
env: | |
NPM_CONFIG_AUDIT: false | |
with: | |
node-version: lts/* | |
use-npm-ci: true | |
- run: npm run build-only | |
- run: ./scripts/auto-deploy.sh | |
env: | |
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |