docs: add rxMethod/signalMethod breaking change to migration guide (#… #215
This file contains hidden or 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: main | |
| on: | |
| push: | |
| branches: | |
| - main | |
| permissions: | |
| actions: read | |
| contents: read | |
| concurrency: | |
| group: ${{ github.workflow }}-${{ github.event.number || github.sha }} | |
| cancel-in-progress: true | |
| jobs: | |
| install: | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: npm install --global corepack@0.31.0 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .node-version | |
| cache: 'pnpm' | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - run: pnpm install --frozen-lockfile --prefer-offline | |
| lint: | |
| runs-on: ubuntu-latest | |
| needs: install | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: npm install --global corepack@0.31.0 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .node-version | |
| cache: 'pnpm' | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - run: pnpm install --frozen-lockfile --prefer-offline | |
| - uses: nrwl/nx-set-shas@v4 | |
| - run: pnpm exec nx run-many -t lint | |
| test: | |
| runs-on: ubuntu-latest | |
| needs: install | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: npm install --global corepack@0.31.0 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .node-version | |
| cache: 'pnpm' | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - run: pnpm install --frozen-lockfile --prefer-offline | |
| - uses: nrwl/nx-set-shas@v4 | |
| - run: pnpm exec nx run-many -t test --exclude=docs-app --skip-nx-cache --parallel=3 | |
| e2e: | |
| runs-on: ubuntu-latest | |
| needs: install | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: npm install --global corepack@0.31.0 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .node-version | |
| cache: 'pnpm' | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - run: pnpm install --frozen-lockfile --prefer-offline | |
| - run: pnpm exec cypress install | |
| - uses: nrwl/nx-set-shas@v4 | |
| - run: pnpm exec nx run-many -t e2e --exclude=docs-app,www --parallel=1 | |
| schematics-core-check: | |
| runs-on: ubuntu-latest | |
| needs: install | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: npm install --global corepack@0.31.0 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .node-version | |
| cache: 'pnpm' | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - run: pnpm install --frozen-lockfile --prefer-offline | |
| - uses: nrwl/nx-set-shas@v4 | |
| - run: pnpm run copy:schematics | |
| - run: pnpm run schematics:check | |
| build: | |
| runs-on: ubuntu-latest | |
| needs: install | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: npm install --global corepack@0.31.0 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .node-version | |
| cache: 'pnpm' | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - run: pnpm install --frozen-lockfile --prefer-offline | |
| - uses: nrwl/nx-set-shas@v4 | |
| - run: pnpm exec nx run-many -t build --exclude=docs-app,www --skip-nx-cache --parallel=3 | |
| - uses: actions/upload-artifact@v4 | |
| with: | |
| name: artifact-modules | |
| path: dist/modules | |
| deploy: | |
| needs: build | |
| runs-on: ubuntu-latest | |
| steps: | |
| - uses: actions/checkout@v4 | |
| with: | |
| fetch-depth: 0 | |
| - run: npm install --global corepack@0.31.0 | |
| - run: corepack enable | |
| - uses: actions/setup-node@v4 | |
| with: | |
| node-version-file: .node-version | |
| cache: 'pnpm' | |
| cache-dependency-path: '**/pnpm-lock.yaml' | |
| - uses: actions/download-artifact@v4 | |
| with: | |
| name: artifact-modules | |
| path: dist | |
| # TODO: Add deployment steps here | |
| # - run: pnpm run deploy:builds |