Skip to content

chore(deps): update all non-major dependencies (examples & templates) (patch) #2081

chore(deps): update all non-major dependencies (examples & templates) (patch)

chore(deps): update all non-major dependencies (examples & templates) (patch) #2081

Workflow file for this run

name: Examples & Templates
on:
push:
branches:
- 'main'
paths:
- 'examples/**/*'
- 'templates/**/*'
pull_request:
paths:
- 'examples/**/*'
- 'templates/**/*'
jobs:
examples:
runs-on: ubuntu-latest
strategy:
matrix:
path:
- nextjs-app
- nextjs-pages
- react-router-ts
- vite-ts
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.1.0
with:
node-version-file: '.nvmrc'
- name: Install
run: npm ci
working-directory: examples/${{ matrix.path }}
- name: Build
run: npm run build
working-directory: examples/${{ matrix.path }}
- name: Test
run: npm run test --if-present
working-directory: examples/${{ matrix.path }}
- name: ESLint
run: npm run lint --if-present
working-directory: examples/${{ matrix.path }}
templates:
runs-on: ubuntu-latest
strategy:
matrix:
path:
- nextjs-app
- nextjs-pages
- vite-ts
fail-fast: false
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4.1.0
with:
node-version-file: '.nvmrc'
- name: Install
run: npm ci
working-directory: templates/${{ matrix.path }}
- name: Build
run: npm run build
working-directory: templates/${{ matrix.path }}
- name: Test
run: npm run test --if-present
working-directory: templates/${{ matrix.path }}
- name: ESLint
run: npm run lint --if-present
working-directory: templates/${{ matrix.path }}