Skip to content

Commit

Permalink
Merge branch 'intuit:main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
ykhandelwal913 authored Mar 6, 2024
2 parents 43949a1 + f124234 commit d1ed309
Show file tree
Hide file tree
Showing 126 changed files with 11,496 additions and 2,539 deletions.
162 changes: 161 additions & 1 deletion .all-contributorsrc
Original file line number Diff line number Diff line change
Expand Up @@ -678,7 +678,9 @@
"avatar_url": "https://avatars.githubusercontent.com/u/22633385?v=4",
"profile": "https://bandism.net/",
"contributions": [
"doc"
"doc",
"test",
"code"
]
},
{
Expand All @@ -700,6 +702,164 @@
"test",
"code"
]
},
{
"login": "ejhayes",
"name": "Eric Hayes",
"avatar_url": "https://avatars.githubusercontent.com/u/310233?v=4",
"profile": "https://github.com/ejhayes",
"contributions": [
"doc",
"test",
"code"
]
},
{
"login": "domoritz",
"name": "Dominik Moritz",
"avatar_url": "https://avatars.githubusercontent.com/u/589034?v=4",
"profile": "https://www.domoritz.de/",
"contributions": [
"code",
"test"
]
},
{
"login": "vpipkt",
"name": "Jason T Brown",
"avatar_url": "https://avatars.githubusercontent.com/u/7798319?v=4",
"profile": "https://github.com/vpipkt",
"contributions": [
"doc",
"infra",
"test",
"code"
]
},
{
"login": "megatroom",
"name": "Bruno Nardini",
"avatar_url": "https://avatars.githubusercontent.com/u/673904?v=4",
"profile": "http://www.brunonardini.com.br/",
"contributions": [
"doc",
"infra",
"test",
"code"
]
},
{
"login": "AndreyBozhko",
"name": "Andrey Bozhko",
"avatar_url": "https://avatars.githubusercontent.com/u/22246447?v=4",
"profile": "https://www.linkedin.com/in/andrey-bozhko/",
"contributions": [
"code"
]
},
{
"login": "amalik2",
"name": "Adil Malik",
"avatar_url": "https://avatars.githubusercontent.com/u/25858348?v=4",
"profile": "https://github.com/amalik2",
"contributions": [
"doc",
"infra",
"test",
"code"
]
},
{
"login": "ds300",
"name": "David Sheldrick",
"avatar_url": "https://avatars.githubusercontent.com/u/1242537?v=4",
"profile": "https://github.com/ds300",
"contributions": [
"test",
"code",
"doc"
]
},
{
"login": "snebjorn",
"name": "Eskild Diderichsen",
"avatar_url": "https://avatars.githubusercontent.com/u/1266245?v=4",
"profile": "https://github.com/snebjorn",
"contributions": [
"doc",
"test",
"code"
]
},
{
"login": "ld-codes",
"name": "ld-codes",
"avatar_url": "https://avatars.githubusercontent.com/u/123950213?v=4",
"profile": "https://github.com/ld-codes",
"contributions": [
"doc",
"code"
]
},
{
"login": "ccremer",
"name": "Chris",
"avatar_url": "https://avatars.githubusercontent.com/u/12159026?v=4",
"profile": "https://github.com/ccremer",
"contributions": [
"doc"
]
},
{
"login": "Satishpokala124",
"name": "Satish Pokala",
"avatar_url": "https://avatars.githubusercontent.com/u/49762924?v=4",
"profile": "https://github.com/Satishpokala124",
"contributions": [
"doc"
]
},
{
"login": "Zweer",
"name": "Niccolò Olivieri Achille",
"avatar_url": "https://avatars.githubusercontent.com/u/825906?v=4",
"profile": "https://github.com/Zweer",
"contributions": [
"test",
"code"
]
},
{
"login": "jackw",
"name": "Jack Westbrook",
"avatar_url": "https://avatars.githubusercontent.com/u/73201?v=4",
"profile": "https://www.heywesty.com/",
"contributions": [
"doc",
"test",
"code"
]
},
{
"login": "jazmon",
"name": "Atte Huhtakangas",
"avatar_url": "https://avatars.githubusercontent.com/u/3680110?v=4",
"profile": "https://github.com/jazmon",
"contributions": [
"doc",
"test",
"code"
]
},
{
"login": "restfulhead",
"name": "Patrick Ruhkopf",
"avatar_url": "https://avatars.githubusercontent.com/u/558375?v=4",
"profile": "http://ruhkopf.name/",
"contributions": [
"test",
"code"
]
}
],
"commitConvention": "none"
Expand Down
131 changes: 0 additions & 131 deletions .circleci/config.yml

This file was deleted.

18 changes: 18 additions & 0 deletions .github/actions/build-cache/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
name: "Build Cache"
description: build cache

runs:
using: "composite"
steps:
- name: build cache
uses: actions/cache@v3
with:
path: |
node_modules
packages/*/node_modules
plugins/*/node_modules
packages/*/dist
plugins/*/dist
*/cli/binary
key: ${{ github.run_id }}
restore-keys: ${{ github.run_id }}
42 changes: 42 additions & 0 deletions .github/actions/install-deps/action.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,42 @@
name: "Setup"
description: Setup action

runs:
using: "composite"
steps:
- name: Use nodejs
uses: actions/setup-node@v3
with:
node-version: 16.18

- name: restore workspace cache
uses: actions/cache@v3
id: node_modules
with:
path: |
node_modules
packages/*/node_modules
key: node-modules-${{ runner.os }}-${{ hashFiles('yarn.lock', 'patches/*.patch') }}
restore-keys: |
node-modules-${{ runner.os }}-
- run: yarn install --frozen-lockfile --network-timeout 9000000
if: steps.node_modules.outputs.cache-hit != 'true'
shell: bash

- name: restore pkg cache
uses: actions/cache@v3
id: pkg
with:
path: ~/.pkg-cache
key: pkg-cache-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
restore-keys: |
pkg-cache-${{ runner.os }}-
- name: Install pkg node binaries
if: steps.pkg.outputs.cache-hit != 'true'
shell: bash
run: |
yarn pkg-fetch -n node16 -p macos -a x64
yarn pkg-fetch -n node16 -p win -a x64
yarn pkg-fetch -n node16 -p linux -a x64
Loading

0 comments on commit d1ed309

Please sign in to comment.