Skip to content
Draft
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
16 changes: 14 additions & 2 deletions .github/workflows/ci-admin-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# NOTE(douglasduteil): Corepack will stop being distributed with Node.js from 25
- name: Install Corepack
run: |
npm install -g corepack
corepack enable

- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
cache: yarn
cache-dependency-path: ./admin/yarn.lock
Expand Down Expand Up @@ -55,8 +61,14 @@ jobs:
with:
version: latest

# NOTE(douglasduteil): Corepack will stop being distributed with Node.js from 25
- name: Install Corepack
run: |
npm install -g corepack
corepack enable

- name: Set up Node.js for federation-admin
uses: actions/setup-node@v6
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
cache: yarn
cache-dependency-path: ./admin/yarn.lock
Expand Down
46 changes: 38 additions & 8 deletions .github/workflows/ci-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,8 +16,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# NOTE(douglasduteil): Corepack will stop being distributed with Node.js from 25
- name: Install Corepack
run: |
npm install -g corepack
corepack enable

- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
cache: yarn
cache-dependency-path: ./back/yarn.lock
Expand Down Expand Up @@ -48,15 +54,21 @@ jobs:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# NOTE(douglasduteil): Corepack will stop being distributed with Node.js from 25
- name: Install Corepack
run: |
npm install -g corepack
corepack enable

- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
cache: yarn
cache-dependency-path: ./back/yarn.lock
node-version-file: ./back/package.json

- name: Install quality dependencies
run: yarn install --frozen-lockfile --no-progress
run: yarn install --immutable

- name: Check code style
run: yarn lint
Expand All @@ -70,8 +82,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# NOTE(douglasduteil): Corepack will stop being distributed with Node.js from 25
- name: Install Corepack
run: |
npm install -g corepack
corepack enable

- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
cache: yarn
cache-dependency-path: ./back/yarn.lock
Expand All @@ -92,8 +110,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# NOTE(douglasduteil): Corepack will stop being distributed with Node.js from 25
- name: Install Corepack
run: |
npm install -g corepack
corepack enable

- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
cache: yarn
cache-dependency-path: ./quality/yarn.lock
Expand Down Expand Up @@ -124,7 +148,7 @@ jobs:
./docker-stack up small

- name: Install quality dependencies
run: yarn install --frozen-lockfile --no-progress
run: yarn install --immutable

- name: Test snapshots
run: |
Expand Down Expand Up @@ -163,8 +187,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# NOTE(douglasduteil): Corepack will stop being distributed with Node.js from 25
- name: Install Corepack
run: |
npm install -g corepack
corepack enable

- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
cache: yarn
cache-dependency-path: ./quality/yarn.lock
Expand Down Expand Up @@ -196,7 +226,7 @@ jobs:
./docker-stack up "${{ matrix.stack }}"

- name: Install quality dependencies
run: yarn install --frozen-lockfile --no-progress
run: yarn install --immutable

- name: Execute e2e tests
run: |
Expand Down
8 changes: 7 additions & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,8 +11,14 @@ jobs:
- name: Checkout code
uses: actions/checkout@de0fac2e4500dabe0009e67214ff5f5447ce83dd # v6.0.2

# NOTE(douglasduteil): Corepack will stop being distributed with Node.js from 25
- name: Install Corepack
run: |
npm install -g corepack
corepack enable

- name: Set up Node.js
uses: actions/setup-node@v6
uses: actions/setup-node@53b83947a5a98c8d113130e565377fae1a50d02f # v6.3.0
with:
cache: yarn
cache-dependency-path: ./back/yarn.lock
Expand Down
1 change: 1 addition & 0 deletions quality/.yarnrc.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
nodeLinker: node-modules
2 changes: 1 addition & 1 deletion quality/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
"devDependencies": {
"prettier-plugin-organize-imports": "^4.3.0"
},
"packageManager": "yarn@1.22.22+sha512.a6b2f7906b721bba3d67d4aff083df04dad64c399707841b7acf00f6b133b7ac24255f2652fa22ae3534329dc6180534e98d17432037ff6fd140556e2bb3137e",
"packageManager": "yarn@4.13.0",
"engines": {
"node": ">=22",
"npm": "DO-NOT-USE-NPM"
Expand Down
Loading
Loading