Skip to content

Bump next from 15.0.1 to 15.0.2 in /examples/app/without-i18n-routing #47

Bump next from 15.0.1 to 15.0.2 in /examples/app/without-i18n-routing

Bump next from 15.0.1 to 15.0.2 in /examples/app/without-i18n-routing #47

Workflow file for this run

name: CI
on: [ pull_request ]
jobs:
build-root:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
build-with-i18n:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Change directory to with-i18n-routing
run: cd examples/app/with-i18n-routing
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
build-without-i18n:
runs-on: ubuntu-latest
steps:
- name: Checkout repository
uses: actions/checkout@v2
- name: Change directory to without-i18n-routing
run: cd examples/app/without-i18n-routing
- name: Install dependencies
run: npm install
- name: Build
run: npm run build