Skip to content

chore(deps): bump rollup from 4.19.1 to 4.22.4 in /examples/web-vite #135

chore(deps): bump rollup from 4.19.1 to 4.22.4 in /examples/web-vite

chore(deps): bump rollup from 4.19.1 to 4.22.4 in /examples/web-vite #135

name: Examples
on:
push:
branches: [main]
pull_request:
branches: ['**']
jobs:
test-native:
name: Test React Native CLI
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- name: Install Example
run: yarn --cwd examples/native-cli install
- name: Validate TypeScript
run: yarn --cwd examples/native-cli typecheck
- name: Validate ESLint
run: yarn --cwd examples/native-cli lint
- name: Run tests
run: yarn --cwd examples/native-cli test
- name: Run perf tests
run: cd examples/native-cli && ./reassure-tests.sh
- name: Run Danger.js
run: yarn --cwd examples/native-cli danger ci --id native
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test-native-expo:
name: Test React Native Expo
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- name: Install Example
run: yarn --cwd examples/native-expo install
- name: Validate TypeScript
run: yarn --cwd examples/native-expo typecheck
- name: Run tests
run: yarn --cwd examples/native-expo test
- name: Run perf tests
run: cd examples/native-expo && ./reassure-tests.sh
- name: Run Danger.js
run: yarn --cwd examples/native-expo danger ci --id native-expo
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test-web-vite:
name: Test Vite
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- name: Install Example
run: yarn --cwd examples/web-vite install
- name: Validate TypeScript
run: yarn --cwd examples/web-vite typecheck
- name: Validate ESLint
run: yarn --cwd examples/web-vite lint
- name: Run tests
run: yarn --cwd examples/web-vite test
- name: Run perf tests
run: cd examples/web-vite && ./reassure-tests.sh
- name: Run Danger.js
run: yarn --cwd examples/web-vite danger ci --id web-vite
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
test-web-nextjs:
name: Test Next.js
runs-on: ubuntu-latest
steps:
- name: Checkout
uses: actions/checkout@v4
- name: Enable Corepack
run: corepack enable
- name: Setup Node.js
uses: actions/setup-node@v4
with:
node-version: 20.x
cache: 'yarn'
- name: Install Example
run: yarn --cwd examples/web-nextjs install
- name: Validate ESLint
run: yarn --cwd examples/web-nextjs lint
- name: Run tests
run: yarn --cwd examples/web-nextjs test
- name: Run perf tests
run: cd examples/web-nextjs && ./reassure-tests.sh
- name: Run Danger.js
run: yarn --cwd examples/web-nextjs danger ci --id web-nextjs
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}