Normative: allow duplicate named capture groups #232
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' | |
on: [pull_request] | |
jobs: | |
spellcheck: | |
name: 'check for newly-introduced spelling errors' | |
runs-on: ubuntu-22.04 | |
steps: | |
- run: sudo apt-get install aspell | |
- uses: actions/checkout@v4 | |
with: | |
# Number of commits to fetch. 0 indicates all history for all branches and tags. | |
# Default: 1 | |
fetch-depth: 0 | |
- 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: node scripts/spellcheck.mjs origin/"${GITHUB_BASE_REF}" |