chore(deps): update dependency uuid to v11.0.1 #6133
Workflow file for this run
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: pull-request | |
on: | |
pull_request: | |
branches: | |
- master | |
jobs: | |
build: | |
name: Test on node ${{matrix.node}} and ${{matrix.os}} | |
runs-on: ${{matrix.os}} | |
strategy: | |
matrix: | |
node: | |
- 20 | |
- 22 | |
os: | |
#- macos-latest | |
- ubuntu-latest | |
#- windows-latest | |
env: | |
#PLAYWRIGHT_BROWSERS_PATH: ./cache/playwright | |
YARN_NODE_LINKER: pnp | |
steps: | |
- name: Checkout | |
uses: actions/[email protected] | |
with: | |
# awaiting https://github.com/facebook/jest/issues/11271 | |
fetch-depth: 0 | |
#lfs: true | |
# awaiting https://github.com/actions/checkout/issues/317 | |
ref: ${{github.event.pull_request.head.ref}} | |
- name: Git LFS Hashes | |
run: git lfs ls-files -l | cut -d' ' -f1 | sort > .lfs-hashes | |
- name: Restore Git LFS Cache | |
uses: actions/cache/[email protected] | |
id: lfs-cache | |
with: | |
path: .git/lfs | |
key: ${{matrix.os}}-lfs-${{hashFiles('.lfs-hashes')}} | |
restore-keys: | | |
${{matrix.os}}-lfs- | |
- name: Pull Git LFS | |
run: git lfs pull | |
- name: Setup Node@${{matrix.node}} | |
uses: actions/[email protected] | |
with: | |
node-version: ${{matrix.node}} | |
# awaiting https://github.com/actions/checkout/pull/155 | |
- name: Fetch Base Branch | |
run: git -c protocol.version=2 fetch --no-recurse-submodules --no-tags --progress --prune origin ${{github.event.pull_request.base.ref}}:${{github.event.pull_request.base.ref}} | |
- name: Yarn Cache Directory | |
id: yarn-cache-dir-path | |
run: echo "::set-output name=dir::$(yarn config get cacheFolder)" | |
- name: Restore Yarn Cache | |
uses: actions/cache/[email protected] | |
id: yarn-cache | |
with: | |
path: | | |
${{steps.yarn-cache-dir-path.outputs.dir}} | |
.yarn/install-state.gz | |
.yarn/unplugged | |
key: ${{matrix.os}}-${{matrix.node}}-yarn-${{hashFiles('**/yarn.lock')}} | |
restore-keys: | | |
${{matrix.os}}-${{matrix.node}}-yarn- | |
- name: Install Dependencies | |
run: yarn install --immutable | |
- name: Constraints | |
run: yarn constraints | |
- name: Restore TypeScript Cache | |
uses: actions/cache/[email protected] | |
id: typescript-cache | |
with: | |
path: "**/build" | |
key: ${{matrix.os}}-${{matrix.node}}-typescript-${{github.sha}} | |
restore-keys: | | |
${{matrix.os}}-${{matrix.node}}-typescript- | |
- name: Compile | |
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --topological-dev --verbose run compile | |
- name: Restore Jest Cache | |
uses: actions/cache/[email protected] | |
id: jest-cache | |
with: | |
path: "**/cache/jest" | |
key: ${{matrix.os}}-${{matrix.node}}-jest-${{github.sha}} | |
restore-keys: | | |
${{matrix.os}}-${{matrix.node}}-jest- | |
- name: Unit Test | |
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run test:ci:branch | |
- name: Restore ESLint Cache | |
uses: actions/cache/[email protected] | |
id: eslint-cache | |
with: | |
path: "**/.eslintcache" | |
key: ${{matrix.os}}-${{matrix.node}}-eslint-${{github.sha}} | |
restore-keys: | | |
${{matrix.os}}-${{matrix.node}}-eslint- | |
- name: Lint | |
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run lint:diff | |
- name: Restore Prettier Cache | |
uses: actions/cache/[email protected] | |
id: prettier-cache | |
with: | |
path: "**/.yarn/.cache/prettier" | |
key: ${{matrix.os}}-${{matrix.node}}-prettier-${{github.sha}} | |
restore-keys: | | |
${{matrix.os}}-${{matrix.node}}-prettier- | |
- name: Format | |
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run format:diff:check | |
- name: Restore Webpack Cache | |
uses: actions/cache/[email protected] | |
id: webpack-cache | |
with: | |
path: "**/.yarn/.cache/webpack" | |
key: ${{matrix.os}}-${{matrix.node}}-webpack-${{github.sha}} | |
restore-keys: | | |
${{matrix.os}}-${{matrix.node}}-webpack- | |
- name: Build | |
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --topological-dev --verbose run build | |
- name: Bundle Size | |
run: yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run bundlesize | |
#- name: Date (YYYYMM) | |
# id: date | |
# run: echo "::set-output name=date::$(/bin/date -u "+%Y%m")" | |
#- name: Restore Playwright Cache | |
# uses: actions/cache/[email protected] | |
# id: playwright-cache | |
# with: | |
# path: ${{env.PLAYWRIGHT_BROWSERS_PATH}} | |
# key: ${{matrix.os}}-${{matrix.node}}-playwright-${{steps.date.outputs.date}} | |
- name: Playwright | |
id: playwright | |
run: | | |
yarn dlx playwright install --with-deps | |
yarn workspaces foreach --parallel --since="${{github.event.pull_request.base.ref}}" --verbose run playwright:branch | |
- name: Upload Playwright Artifacts | |
uses: actions/[email protected] | |
if: steps.playwright.outcome == 'failure' | |
with: | |
name: ${{matrix.os}}-${{matrix.node}}-playwright | |
path: ${{github.workspace}}/**/playwright/report/ | |
retention-days: 5 | |
- name: Lint Commits | |
run: yarn commitlint --from="${{github.event.pull_request.base.ref}}" | |
timeout-minutes: 15 |