chore(deps): update dependency @sveltejs/kit to ^2.5.10 (#2692) #8776
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: Test Preview.js core components | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
on: | |
push: | |
branches: | |
- main | |
paths: | |
- "**" | |
- ".github/workflows/test-core-components.yaml" | |
- "!assets/**" | |
- "!integrations/**" | |
pull_request: | |
branches: | |
- "*" | |
paths: | |
- "**" | |
- ".github/workflows/test-core-components.yaml" | |
- "!assets/**" | |
- "!integrations/**" | |
jobs: | |
core-tests: | |
runs-on: ${{ matrix.os }} | |
strategy: | |
matrix: | |
node-version: [18.x] | |
os: [ubuntu-latest] | |
steps: | |
- uses: actions/checkout@a5ac7e51b41094c92402da3b24376905380afc29 # v4 | |
- name: Use Node.js ${{ matrix.node-version }} | |
uses: actions/setup-node@60edb5dd545a775178f52524783378180af0d1f8 # v4 | |
with: | |
node-version: ${{ matrix.node-version }} | |
- name: Cache pnpm modules | |
uses: actions/cache@0c45773b623bea8c8e75f6c82b208c3cf94ea4f9 # v4 | |
with: | |
path: ~/.pnpm-store | |
key: ${{ runner.os }}-exclude-test-apps-${{ hashFiles('pnpm-lock.yaml') }} | |
restore-keys: | | |
${{ runner.os }}-exclude-test-apps- | |
- uses: pnpm/action-setup@a3252b78c470c02df07e9d59298aecedc3ccdd6d # v3.0.0 | |
with: | |
run_install: | | |
- args: [--filter=\!./framework-plugins/\*/tests/apps/\*] | |
- run: pnpm lint | |
- run: pnpm check-licenses | |
- run: pnpm check-deps | |
- run: pnpm turbo run build --scope="@previewjs/app" --include-dependencies | |
- run: pnpm turbo run test --concurrency=1 |