Skip to content

fix: do not allow relative pathing without from #1053

fix: do not allow relative pathing without from

fix: do not allow relative pathing without from #1053

Workflow file for this run

name: pr
on:
pull_request:
paths-ignore:
- 'docs/**'
- 'media/**'
- '**/*.md'
concurrency:
group: ${{ github.workflow }}-${{ github.event.number || github.ref }}
cancel-in-progress: true
env:
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
test:
name: Test
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: Start Nx Agents
run: npx nx-cloud start-ci-run --distribute-on=".nx/workflows/dynamic-changesets.yaml"
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Get base and head commits for `nx affected`
uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'main'
- name: Run Checks
run: pnpm run test:pr --parallel=3
- name: Stop Nx Agents
if: ${{ always() }}
run: npx nx-cloud stop-all-agents
type-test-matrix:
name: Type Test Matrix
runs-on: ubuntu-latest
continue-on-error: true
strategy:
fail-fast: false
matrix:
typescript-version:
- '~5.4.0'
- '~5.3.0'
- '~5.2.0'
- '~5.1.0'
- '~5.0.0'
steps:
- uses: actions/checkout@v4
with:
fetch-depth: 0
- name: Setup pnpm
uses: pnpm/action-setup@v2
with:
version: 8
- name: Setup Node
uses: actions/setup-node@v4
with:
node-version-file: .nvmrc
cache: pnpm
- name: Install dependencies
run: pnpm install --frozen-lockfile --prefer-offline
- name: Get base and head commits for `nx affected`
uses: nrwl/nx-set-shas@v3
with:
main-branch-name: 'main'
- name: install other ts versions
run: pnpm add -Dw typescript@${{ matrix.typescript-version }}
- name: Start Type Test
run: TS_VERSION=${{ matrix.typescript-version }} pnpm run test:types