Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

WIP: chore: node 18 upgrade #742

Open
wants to merge 10 commits into
base: master
Choose a base branch
from
Open
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
1 change: 1 addition & 0 deletions .circleci/.npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
39 changes: 21 additions & 18 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
@@ -1,33 +1,36 @@
workflows:
version: 2
# uncomment to get build registry
# nightly:
# triggers:
# - schedule:
# cron: "0 0 * * *"
# filters:
# branches:
# only:
# - master
# jobs:
# - build_registry
commit:
jobs:
- build
version:
2.1
# uncomment to get build registry
# nightly:
# triggers:
# - schedule:
# cron: "0 0 * * *"
# filters:
# branches:
# only:
# - master
# jobs:
# - build_registry
orbs:
browser-tools: circleci/[email protected]
commit:
jobs:
- build
jobs:
build_registry:
docker:
- image: "circleci/node:lts-browsers"
- image: "cimg/node:18.18.0-browsers"
steps:
- checkout
- run:
name: build registry
command: npm run build:registry
build:
docker:
- image: "circleci/node:lts-browsers"
- image: "cimg/node:18.18.0-browsers"
steps:
- checkout
- browser-tools/install-browser-tools
- run:
name: install
command: npm ci
Expand Down
1 change: 1 addition & 0 deletions .npmrc
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
legacy-peer-deps=true
1 change: 0 additions & 1 deletion next-env.d.ts
Original file line number Diff line number Diff line change
@@ -1,5 +1,4 @@
/// <reference types="next" />
/// <reference types="next/types/global" />
/// <reference types="next/image-types/global" />

// NOTE: This file should not be edited
Expand Down
Loading