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
8 changes: 4 additions & 4 deletions .github/actions/install-dependencies/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,17 +8,17 @@ inputs:
runs:
using: 'composite'
steps:
- name: Enable corepack
shell: bash
run: corepack enable
- name: ⎔ Use Node.js
uses: actions/setup-node@v4
with:
node-version: '22.15.1'
cache: 'yarn'
- name: ⎔ Set yarn version
shell: bash
run: yarn set version 1.22.22
- name: 📥 Install dependencies
shell: bash
run: yarn install --frozen-lockfile
run: yarn install --immutable
# - name: Add NX_CLOUD_ACCESS_TOKEN to nx-cloud.env
# shell: bash
# run: echo "NX_CLOUD_ACCESS_TOKEN=${{ inputs.NX_CLOUD_ACCESS_TOKEN }}" >> nx-cloud.env
2 changes: 1 addition & 1 deletion .github/workflows/info.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
- name: 🔧 List affected projects
id: affected_projects
run: echo "affected_projects=$(yarn --silent nx show projects --affected --json)" >> "$GITHUB_OUTPUT"
run: echo "affected_projects=$(yarn nx show projects --affected --json)" >> "$GITHUB_OUTPUT"
- name: Source validations on affected projects
run: yarn nx affected --target validate
- name: 🔍 Debug
Expand Down
2 changes: 1 addition & 1 deletion .yarnrc.yml
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
nodeLinker: node-modules
ignore-workspace-root-check: true
# yarnPath: .yarn/releases/yarn-4.9.2.cjs
4 changes: 0 additions & 4 deletions libs/foundation-styles/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -8,10 +8,6 @@
"import": "./dist/index.mjs",
"require": "./dist/index.js"
},
"./tailwind": {
"import": "./dist/tailwind.mjs",
"require": "./dist/tailwind.js"
},
"./theme.css": "./src/theme.css"
}
}
4 changes: 2 additions & 2 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"version": "0.0.0",
"license": "MIT",
"private": true,
"packageManager": "yarn@1.22.22",
"packageManager": "yarn@4.9.2",
"scripts": {
"dev": "nx dev ageorgedev",
"test": "nx run-many --target=test --passWithNoTests",
Expand Down Expand Up @@ -108,7 +108,7 @@
},
"volta": {
"node": "22.15.1",
"yarn": "1.22.22"
"yarn": "4.9.2"
},
"resolutions": {
"@types/react": "19.1.8",
Expand Down
Loading