Skip to content

Commit

Permalink
Fix CircleCI test262 job (#12338)
Browse files Browse the repository at this point in the history
  • Loading branch information
nicolo-ribaudo committed Nov 10, 2020
1 parent 40727ab commit 4b1b961
Showing 1 changed file with 5 additions and 1 deletion.
6 changes: 5 additions & 1 deletion .circleci/config.yml
Expand Up @@ -63,7 +63,9 @@ jobs:
command: |
if [ -n "$CIRCLE_PULL_REQUEST" ]
then
git fetch origin refs/pull/$CIRCLE_PR_NUMBER/merge
# $CIRCLE_PR_NUMBER is not always defined:
# https://support.circleci.com/hc/en-us/articles/360047521451-Why-is-CIRCLE-PR-NUMBER-empty-
git fetch origin refs/pull/${CIRCLE_PULL_REQUEST##*/}/merge
git checkout -qf FETCH_HEAD
fi
- restore_cache: *restore-yarn-cache
Expand Down Expand Up @@ -175,6 +177,7 @@ workflows:
- main
- next-8-dev
- next-8-rebased
context: babel-test262
test262-pr:
jobs:
- approve-test262-run:
Expand All @@ -196,6 +199,7 @@ workflows:
- master
- next-8-dev
- next-8-rebased
context: babel-test262
e2e:
jobs:
- publish-verdaccio
Expand Down

0 comments on commit 4b1b961

Please sign in to comment.