Skip to content

chore(deps): update all dependencies #973

chore(deps): update all dependencies

chore(deps): update all dependencies #973

Workflow file for this run

name: On Pull Request
on:
workflow_dispatch:
merge_group:
pull_request:
branches: main
env:
CI: true
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
concurrency:
group: ${{ github.workflow }}-${{ github.ref }}
cancel-in-progress: true
jobs:
build-and-test:
runs-on: ubuntu-latest
steps:
- name: checkout code repository
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: setup node.js
uses: actions/setup-node@v4
with:
node-version: 20.11.0
- uses: pnpm/action-setup@v4.0.0
with:
run_install: false
- name: get pnpm store directory
id: pnpm-cache
run: echo "pnpm_cache_dir=$(pnpm store path)" >> $GITHUB_OUTPUT
- name: load cache
uses: actions/cache@v4
with:
path: |
~/.cache/Cypress
${{ steps.pnpm-cache.outputs.pnpm_cache_dir }}
key: ${{ runner.os }}-${{ hashFiles('**/pnpm-lock.yaml') }}
- uses: nrwl/nx-set-shas@v4
- run: npx nx-cloud start-ci-run --distribute-on="3 linux-medium-js" --require-explicit-completion
- name: install dependencies
run: pnpm install
- name: build packs
run: pnpm nx affected -t build
- name: run lint
run: pnpm test:lint
- name: run unit tests
run: pnpm test:unit
- name: run cypress
run: pnpm nx affected -t e2e-ci @milkdown/e2e
- run: npx nx-cloud complete-ci-run
if: always()
- name: Upload test results
if: ${{ failure() }}
uses: actions/upload-artifact@v4
with:
name: test-results-main
path: dist/cypress
if-no-files-found: ignore