@financial-times/n-conversion-forms 29.0.0 → 30.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/.circleci/config.yml
CHANGED
|
@@ -6,7 +6,7 @@ references:
|
|
|
6
6
|
container_config_node: &container_config_node
|
|
7
7
|
working_directory: ~/project/build
|
|
8
8
|
docker:
|
|
9
|
-
- image: cimg/node:
|
|
9
|
+
- image: cimg/node:18.17-browsers
|
|
10
10
|
workspace_root: &workspace_root
|
|
11
11
|
~/project
|
|
12
12
|
|
|
@@ -61,11 +61,8 @@ jobs:
|
|
|
61
61
|
- checkout
|
|
62
62
|
- run:
|
|
63
63
|
name: Checkout next-ci-shared-helpers
|
|
64
|
-
command: git clone --depth 1 git@github.com:Financial-Times/next-ci-shared-helpers.git .circleci/shared-helpers
|
|
64
|
+
command: git clone --depth 1 git@github.com:Financial-Times/next-ci-shared-helpers.git --branch unpin-heroku .circleci/shared-helpers
|
|
65
65
|
- *restore_npm_cache
|
|
66
|
-
- run:
|
|
67
|
-
name: Install npm v7
|
|
68
|
-
command: npm install -g npm@7
|
|
69
66
|
- run:
|
|
70
67
|
name: Install project dependencies
|
|
71
68
|
command: make install
|
|
@@ -13,9 +13,9 @@ set -eu -o pipefail
|
|
|
13
13
|
# HELPER COMMANDS
|
|
14
14
|
|
|
15
15
|
# Install Heroku CLI
|
|
16
|
-
wget https://cli-assets.heroku.com/
|
|
16
|
+
wget https://cli-assets.heroku.com/channels/stable/heroku-linux-x64.tar.gz
|
|
17
17
|
sudo mkdir -p /usr/local/lib /usr/local/bin
|
|
18
|
-
sudo tar -xzf heroku-linux-
|
|
18
|
+
sudo tar -xzf heroku-linux-x64.tar.gz -C /usr/local/lib
|
|
19
19
|
sudo ln -s /usr/local/lib/heroku/bin/heroku /usr/local/bin/heroku
|
|
20
20
|
|
|
21
21
|
# Output heroku-cli version so user can see in
|