Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 15 additions & 2 deletions .github/workflows/ci-tests.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:

- uses: actions/setup-node@master
with:
node-version: ${{ env.NODE_VERSION }}
node-version: 20
registry-url: 'https://npm.pkg.github.com'
scope: "@rumblefishdev"

Expand All @@ -27,13 +27,26 @@ jobs:
restore-keys: |
${{ runner.OS }}-npm-cache-

- name: Install dependencies
- name: Install root dependencies
run: |
npm i
npm i @rumblefishdev/ui --legacy-peer-deps
node_modules/.bin/lerna bootstrap
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Install @rumblefishdev/ui
run: |
npm i @rumblefishdev/ui --legacy-peer-deps
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Install monorepo dependencies
run: |
node_modules/.bin/lerna bootstrap
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}

- name: Build types
run: |
npm run types:build
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy-prod.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- created

env:
NODE_VERSION: 18.16.0
NODE_VERSION: 20
ENV: prod
AWS_EC2_METADATA_DISABLED: true

Expand Down Expand Up @@ -48,6 +48,7 @@ jobs:
- name: Install dependencies
run: |
npm i
npm i @rumblefishdev/ui --legacy-peer-deps
node_modules/.bin/lerna bootstrap
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
3 changes: 2 additions & 1 deletion .github/workflows/deploy-stage.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ on:
- created

env:
NODE_VERSION: 18.16.0
NODE_VERSION: 20
ENV: stage
AWS_EC2_METADATA_DISABLED: true

Expand Down Expand Up @@ -48,6 +48,7 @@ jobs:
- name: Install dependencies
run: |
npm i
npm i @rumblefishdev/ui --legacy-peer-deps
node_modules/.bin/lerna bootstrap
env:
NODE_AUTH_TOKEN: ${{ secrets.NPM_TOKEN }}
Expand Down
Loading
Loading