Skip to content
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
2 changes: 1 addition & 1 deletion .github/actions/run-publish-vr-screenshot/action.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ runs:
cache: 'yarn'
node-version: '20'

- run: yarn install --frozen-lockfile
- run: yarn install --immutable
shell: bash

- run: yarn playwright install --with-deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundle-size-base.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
cache: 'yarn'
node-version: '22'

- run: yarn install --frozen-lockfile
- run: yarn install --immutable

- name: Build all packages & create reports (non-PR)
run: yarn nx run-many -t bundle-size --nxBail
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/bundle-size.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

- run: echo number of CPUs "$(getconf _NPROCESSORS_ONLN)"

- run: yarn install --frozen-lockfile
- run: yarn install --immutable

- name: Build packages & create reports
run: yarn nx affected -t bundle-size --nxBail
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-packages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
run: |
echo "yarn.lock changed! Verifying package deduplication ..."

yarn run dedupe --list --fail
yarn run dedupe --check

if [[ $? -ne 0 ]]; then
echo "Your changes introduced package duplication 🚨"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/check-tooling.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
with:
node-version: '22'

- run: yarn install --frozen-lockfile
- run: yarn install --immutable

- run: yarn nx run scripts-executors:test -t 'smoke test'

Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/copilot-setup-steps.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ jobs:
cache: 'yarn'
node-version: '22'

- run: yarn install --frozen-lockfile
- run: yarn install --immutable
2 changes: 1 addition & 1 deletion .github/workflows/docsite-publish-ghpages.yml
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ jobs:
cache: 'yarn'

- name: Install packages
run: yarn install --frozen-lockfile
run: yarn install --immutable

- name: Install Playwright Browsers
run: yarn playwright install --with-deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-vrt.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ jobs:
cache: 'yarn'
node-version: '22'

- run: yarn install --frozen-lockfile
- run: yarn install --immutable
- run: yarn playwright install --with-deps

- name: Run VR tests (generate screenshots)
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/pr-website-deploy.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
- name: NodeJS heap default size
run: node -e 'console.log(v8.getHeapStatistics().heap_size_limit / 1024 / 1024 + " MB");'

- run: yarn install --frozen-lockfile
- run: yarn install --immutable

- name: Install Playwright Browsers
run: yarn playwright install --with-deps
Expand Down
12 changes: 8 additions & 4 deletions .github/workflows/pr.yml
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,9 @@ env:

jobs:
main:
if: ${{ github.repository_owner == 'microsoft' }}
runs-on: macos-14-xlarge
# if: ${{ github.repository_owner == 'microsoft' }}
# runs-on: macos-14-xlarge
runs-on: ubuntu-latest
permissions:
contents: 'read'
actions: 'read'
Expand All @@ -46,7 +47,10 @@ jobs:

- run: echo number of CPUs "$(getconf _NPROCESSORS_ONLN)"

- run: yarn install --frozen-lockfile
- run: yarn install --immutable

- name: 'Check duplicates in yarn.lock'
run: yarn run dedupe --check --json

- name: Workspace lint
run: |
Expand Down Expand Up @@ -156,7 +160,7 @@ jobs:

- run: echo number of CPUs "$(getconf _NPROCESSORS_ONLN)"

- run: yarn install --frozen-lockfile
- run: yarn install --immutable

- name: Install Playwright dependencies
run: yarn playwright install --with-deps
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/vrt-baseline.yml
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ jobs:
cache: 'yarn'
node-version: '22'

- run: yarn install --frozen-lockfile
- run: yarn install --immutable
- run: yarn playwright install --with-deps

- name: Run VR tests (generate screenshots)
Expand Down
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,13 @@ $RECYCLE.BIN/
dist.stats.json
bower_components
node_modules

# Yarn (ignore everything except patches, plugins, and releases)
.yarn/*
!.yarn/patches
!.yarn/plugins
!.yarn/releases

temp
tmp
lib
Expand Down
Loading
Loading