Skip to content

Commit

Permalink
Merge branch 'main' into set-retries
Browse files Browse the repository at this point in the history
  • Loading branch information
rijkvanzanten committed Jul 10, 2023
2 parents f13bb74 + 030b5ff commit 526606e
Show file tree
Hide file tree
Showing 3 changed files with 482 additions and 496 deletions.
16 changes: 9 additions & 7 deletions .github/actions/prepare/action.yml
Original file line number Diff line number Diff line change
@@ -1,29 +1,31 @@
name: Prepare
description: Install and build the app

inputs:
registry:
description: NPM registry to set up for auth
required: false

runs:
using: 'composite'
steps:
- name: Checkout
uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
node-version: 18
registry-url: ${{ inputs.registry }}

- uses: pnpm/action-setup@v2.0.1
- uses: pnpm/action-setup@v2
name: Install pnpm
id: pnpm-install
with:
version: 7
run_install: false

- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "::set-output name=pnpm_cache_dir::$(pnpm store path)"
echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- uses: actions/cache@v3
name: Setup pnpm cache
Expand Down
13 changes: 6 additions & 7 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,21 +11,20 @@
],
"dependencies": {
"@directus/sdk": "10.2.0",
"ms": "2.1.3"
"ms": "2.1.3",
"node-fetch": "3.3.1"
},
"peerDependencies": {
"eslint": "7||8",
"gatsby-source-filesystem": "4||5",
"gatsby-source-graphql": "4||5",
"node-fetch": "^3.3.1"
"gatsby-source-graphql": "4||5"
},
"repository": "directus/gatsby-source-directus",
"bugs": {
"url": "https://github.com/directus/directus/issues"
},
"gitHead": "24621f3934dc77eb23441331040ed13c676ceffd",
"devDependencies": {
"eslint-config-prettier": "^8.5.0",
"node-fetch": "^3.3.1"
}
"eslint-config-prettier": "^8.5.0"
},
"packageManager": "[email protected]"
}
Loading

0 comments on commit 526606e

Please sign in to comment.