Bump next from 15.1.6 to 15.2.0 #36
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: CI | |
on: | |
push: | |
branches: | |
- 'main' | |
pull_request: | |
concurrency: | |
group: ${{ github.workflow }}-${{ github.ref }} | |
cancel-in-progress: true | |
jobs: | |
packages: | |
timeout-minutes: 10 | |
name: check pnpm install | |
runs-on: ubuntu-latest | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .tool-versions | |
cache: pnpm | |
- name: check pnpm install | |
run: pnpm install --frozen-lockfile | |
lint: | |
timeout-minutes: 10 | |
name: run lint | |
runs-on: ubuntu-latest | |
needs: [packages] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .tool-versions | |
cache: pnpm | |
- name: pnpm install | |
run: pnpm install --frozen-lockfile | |
- name: run lint | |
run: pnpm lint | |
format: | |
timeout-minutes: 10 | |
name: run format | |
runs-on: ubuntu-latest | |
needs: [packages] | |
steps: | |
- name: checkout | |
uses: actions/checkout@v4 | |
- uses: pnpm/action-setup@v4 | |
- name: setup Node | |
uses: actions/setup-node@v4 | |
with: | |
node-version-file: .tool-versions | |
cache: pnpm | |
- name: pnpm install | |
run: pnpm install --frozen-lockfile | |
- name: run format | |
run: pnpm prettier:check |