Skip to content

Commit

Permalink
upgrade yarn
Browse files Browse the repository at this point in the history
  • Loading branch information
alisman committed Oct 5, 2022
1 parent b45ef09 commit 85b9bd1
Showing 1 changed file with 28 additions and 0 deletions.
28 changes: 28 additions & 0 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -129,6 +129,10 @@ jobs:
steps:
- attach_workspace:
at: /tmp/
- run:
name: "Upgrade yarn"
command: |
sudo npm install --global [email protected] --force
# check that all api responses are still the same
- run: "bash src/test/check_api_sync.sh"

Expand All @@ -141,6 +145,10 @@ jobs:
# sudo npm install --global [email protected]
- attach_workspace:
at: /tmp/
- run:
name: "Upgrade yarn"
command: |
sudo npm install --global [email protected] --force
# run tests!
- run:
command: "yarn run testMain"
Expand All @@ -163,6 +171,10 @@ jobs:
# sudo npm install --global [email protected]
- attach_workspace:
at: /tmp/
- run:
name: "Upgrade yarn"
command: |
sudo npm install --global [email protected] --force
# run tests!
- run:
command: "yarn run testPackagesCI"
Expand All @@ -179,6 +191,10 @@ jobs:
steps:
- attach_workspace:
at: /tmp/
- run:
name: "Upgrade yarn"
command: |
sudo npm install --global [email protected] --force
# check that no `.only` statements are still in the tests
# Ignore doTest.only in oql parser
- run:
Expand All @@ -190,6 +206,10 @@ jobs:
steps:
- attach_workspace:
at: /tmp/
- run:
name: "Upgrade yarn"
command: |
sudo npm install --global [email protected] --force
# make sure that there are no relative/incorrect package imports
- run:
name: "Check Incorrect Package Import Statements"
Expand Down Expand Up @@ -221,6 +241,10 @@ jobs:
steps:
- attach_workspace:
at: /tmp/
- run:
name: "Upgrade yarn"
command: |
sudo npm install --global [email protected] --force
# - run:
# # needed to get python3 on the path (https://discuss.circleci.com/t/pyenv-pyvenv-command-not-found/4087/2)
# name: Add python3 to path [corrects bug in circle ci image and may be removed in the future]
Expand Down Expand Up @@ -354,6 +378,10 @@ jobs:
steps:
- attach_workspace:
at: /tmp/
- run:
name: "Upgrade yarn"
command: |
sudo npm install --global [email protected] --force
- run:
name: 'Check code style with Prettier'
command: cd /tmp/repo/ && yarn run prettierCheckCircleCI
Expand Down

0 comments on commit 85b9bd1

Please sign in to comment.