Skip to content

refacto: projectCreation reducer split with urbanProject and renewabl… #1602

refacto: projectCreation reducer split with urbanProject and renewabl…

refacto: projectCreation reducer split with urbanProject and renewabl… #1602

# This workflow will do a clean installation of node dependencies, cache/restore them, build the source code and run tests across different versions of node
# For more information see: https://docs.github.com/en/actions/automating-builds-and-tests/building-and-testing-nodejs
name: Integration validation (install, typecheck, lint, format, build)
on:
push:
branches-ignore:
- main
pull_request:
types: [opened, synchronize]
workflow_call:
jobs:
build:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@v4
- uses: pnpm/action-setup@v3
with:
version: 9.12.2
- name: Use Node.js
uses: actions/setup-node@v4
with:
node-version: "20"
cache: "pnpm"
- name: Install dependencies
run: pnpm install
- name: Typecheck
run: pnpm typecheck
- name: Lint
run: pnpm lint
- name: Format check
run: pnpm format:check
- name: Build
run: pnpm build
- name: Test
run: pnpm test