-
-
Notifications
You must be signed in to change notification settings - Fork 197
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
8 changed files
with
78 additions
and
97,864 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -19,14 +19,6 @@ jobs: | |
name: beta | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
# 1: Setup node | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16.x' | ||
# Checkout repository | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
# Pull secrets from vault | ||
- name: Import Secrets | ||
id: secrets | ||
|
@@ -41,21 +33,16 @@ jobs: | |
${{ vars.VAULT_PATH }} STORYBLOK_ACCESS_TOKEN | STORYBLOK_ACCESS_TOKEN; | ||
${{ vars.VAULT_PATH }} SUPABASE_ANON_KEY | SUPABASE_ANON_KEY; | ||
${{ vars.VAULT_PATH }} SENTRY_AUTH_TOKEN | SENTRY_AUTH_TOKEN; | ||
- name: Cache node modules | ||
id: cache-nodemodules | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: cache-node-modules | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
# caching node_modules | ||
path: '**/node_modules' | ||
key: ${{ runner.os }}-node-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-${{ env.cache-name }}- | ||
# Install dependencies | ||
node-version: '16.x' | ||
cache: yarn | ||
cache-dependency-path: '**/yarn.lock' | ||
- name: Install dependencies | ||
if: steps.cache-nodemodules.outputs.cache-hit != 'true' | ||
run: npm ci --workspaces | ||
run: yarn --frozen-lockfile --immutable | ||
# Generate the expected env file | ||
- name: Make envfile | ||
uses: SpicyPizza/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -32,14 +32,6 @@ jobs: | |
name: ${{ inputs.environment }} | ||
runs-on: ubuntu-22.04 | ||
steps: | ||
# 1: Setup node | ||
- name: Setup Node.js | ||
uses: actions/setup-node@v3 | ||
with: | ||
node-version: '16.x' | ||
# Checkout repository | ||
- name: Checkout repository | ||
uses: actions/checkout@v3 | ||
# Pull secrets from vault | ||
- name: Import Secrets | ||
id: secrets | ||
|
@@ -54,21 +46,16 @@ jobs: | |
${{ vars.VAULT_PATH }} STORYBLOK_ACCESS_TOKEN | STORYBLOK_ACCESS_TOKEN; | ||
${{ vars.VAULT_PATH }} SUPABASE_ANON_KEY | SUPABASE_ANON_KEY; | ||
${{ vars.VAULT_PATH }} SENTRY_AUTH_TOKEN | SENTRY_AUTH_TOKEN; | ||
- name: Cache node modules | ||
id: cache-nodemodules | ||
uses: actions/cache@v3 | ||
env: | ||
cache-name: cache-node-modules | ||
- name: Checkout | ||
uses: actions/checkout@v3 | ||
- name: Setup Node.js environment | ||
uses: actions/setup-node@v3 | ||
with: | ||
# caching node_modules | ||
path: '**/node_modules' | ||
key: ${{ runner.os }}-node-${{ env.cache-name }}-${{ hashFiles('**/package-lock.json') }} | ||
restore-keys: | | ||
${{ runner.os }}-node-${{ env.cache-name }}- | ||
# Install dependencies | ||
node-version: '16.x' | ||
cache: yarn | ||
cache-dependency-path: '**/yarn.lock' | ||
- name: Install dependencies | ||
if: steps.cache-nodemodules.outputs.cache-hit != 'true' | ||
run: npm ci --workspaces | ||
run: yarn --frozen-lockfile --immutable | ||
# Generate the expected env file | ||
- name: Make envfile | ||
uses: SpicyPizza/[email protected] | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
progress=false | ||
strict-peer-deps=false | ||
legacy-peer-deps=true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.