chore(deps): update dependency @types/node to v18.19.3 - autoclosed #456
Workflow file for this run
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: 🚧 Integration | |
on: | |
pull_request: | |
push: | |
branches: | |
- 'master' | |
jobs: | |
format: | |
name: 💅 Check format | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: pnpm/[email protected] | |
name: Install pnpm | |
with: | |
version: 7 | |
- uses: actions/setup-node@main | |
with: | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile --prefer-offline | |
- run: pnpm prettier --check . | |
nextjs: | |
name: ⚛️ NextJS application | |
runs-on: ubuntu-latest | |
steps: | |
- uses: actions/checkout@main | |
- uses: pnpm/[email protected] | |
name: Install pnpm | |
with: | |
version: 7 | |
- uses: actions/setup-node@main | |
with: | |
cache: pnpm | |
- run: pnpm install --frozen-lockfile --prefer-offline | |
- run: pnpm build |