Skip to content

Commit 9bf2ea3

Browse files
committed
Updating deps
1 parent b8dc989 commit 9bf2ea3

File tree

6 files changed

+15053
-21036
lines changed

6 files changed

+15053
-21036
lines changed

.github/workflows/deploy.yml

Lines changed: 14 additions & 14 deletions
Original file line numberDiff line numberDiff line change
@@ -30,36 +30,36 @@ jobs:
3030
steps:
3131
# Checkout the code
3232
- name: "Checkout source code"
33-
uses: actions/checkout@v2
33+
uses: actions/checkout@v4
3434
with:
3535
ref: ${{ github.head_ref }}
3636

3737
- name: "Setup node"
3838
uses: actions/setup-node@v2
3939
with:
40-
node-version: "14"
40+
node-version: "18"
4141

42-
- name: "Restore node_modules cache"
43-
id: cache-npm
44-
uses: actions/cache@v2
45-
with:
46-
path: node_modules
47-
key: npm-${{ hashFiles('**/package-lock.json') }}
48-
restore-keys: |
49-
npm-${{ env.cache-name }}-
50-
npm-
42+
# - name: "Restore node_modules cache"
43+
# id: cache-npm
44+
# uses: actions/cache@v2
45+
# with:
46+
# path: node_modules
47+
# key: npm-${{ hashFiles('**/package-lock.json') }}
48+
# restore-keys: |
49+
# npm-${{ env.cache-name }}-
50+
# npm-
5151

5252
- name: "Install NPM"
53-
if: steps.cache-npm.outputs.cache-hit != 'true'
53+
# if: steps.cache-npm.outputs.cache-hit != 'true'
5454
run: npm ci
5555

5656
# Authenticate using JWT flow
5757
- name: "Auth to dev hub"
5858
shell: bash
5959
run: |
6060
echo "${{ env.DEVHUB_SERVER_KEY }}" > ./jwt-server.key
61-
npx sfdx force:auth:jwt:grant --clientid ${{ env.DEVHUB_CONSUMER_KEY }} --username ${{ env.DEVHUB_USERNAME }} --jwtkeyfile ./jwt-server.key --setdefaultdevhubusername
62-
npx sfdx config:set defaultusername=${{ env.DEVHUB_USERNAME }}
61+
npx sf org login jwt --client-id ${{ env.DEVHUB_CONSUMER_KEY }} --username ${{ env.DEVHUB_USERNAME }} --jwt-key-file ./jwt-server.key --set-default-dev-hub
62+
npx sf config set target-org ${{ env.DEVHUB_USERNAME }}
6363
env:
6464
DEVHUB_USERNAME: ${{ secrets.DEVHUB_USERNAME }}
6565
DEVHUB_CONSUMER_KEY: ${{ secrets.DEVHUB_CONSUMER_KEY }}

.npmrc

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
registry=https://registry.npmjs.org/

.prettierignore

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.sfdx
2-
sfdx-project.json
2+
sfdx-project.json
3+
package-lock.json

0 commit comments

Comments
 (0)