Skip to content

feat: migrate to @tanstack/config #238

feat: migrate to @tanstack/config

feat: migrate to @tanstack/config #238

Workflow file for this run

name: pr
on: [pull_request]
env:
NPM_TOKEN: ${{ secrets.NPM_TOKEN }}
NX_CLOUD_ACCESS_TOKEN: ${{ secrets.NX_CLOUD_ACCESS_TOKEN }}
jobs:
test:
name: 'Test'
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v3
with:
fetch-depth: '0'
- name: Setup Pnpm
uses: pnpm/action-setup@v2.2.4
with:
version: 7
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 16.19.0
cache: 'pnpm'
- name: Install dependencies
run: pnpm --filter "./packages/**" --prefer-offline install --no-frozen-lockfile
- name: Build & Test
run: npx nx run-many --targets=test,build --projects=@tanstack/* --exclude=@tanstack/react-start