Skip to content

Bump next from 13.5.3 to 14.1.0 #266

Bump next from 13.5.3 to 14.1.0

Bump next from 13.5.3 to 14.1.0 #266

Workflow file for this run

name: Lint check
on:
pull_request:
branches: [main]
jobs:
lint:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: actions/setup-node@v4
with:
node-version-file: ".nvmrc"
cache: "yarn"
- name: Run yarn install
run: yarn install
- name: copy .env-example to .env
run: cp .env-example .env
- name: Run yarn lint
run: yarn lint
- name: Check typescript
run: yarn check-typescript