build(deps-dev): bump @storybook/nextjs from 7.0.24 to 7.4.6 #362
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: Build | |
on: | |
push: | |
branches-ignore: [master] | |
pull_request: | |
branches: [master] | |
workflow_dispatch: | |
jobs: | |
build: | |
name: Build Next.js App | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@v3 | |
- name: Set up pnpm | |
uses: pnpm/[email protected] | |
with: | |
version: 8 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 20 | |
cache: "pnpm" | |
- name: Cache Turborepo Tasks | |
uses: actions/cache@v3 | |
with: | |
path: ${{ github.workspace }}/node_modules/.cache/turbo | |
key: ${{ runner.os }}-turbo-build-${{ hashFiles('**/pnpm-lock.yaml') }} | |
restore-keys: ${{ runner.os }}-turbo- | |
- run: pnpm install -rw | |
- run: pnpm run build |