Skip to content

Rename package to TZod, add README.md, convert to TString, update exp… #13

Rename package to TZod, add README.md, convert to TString, update exp…

Rename package to TZod, add README.md, convert to TString, update exp… #13

name: Main (apps)
on:
push:
branches:
- main
paths:
- "apps/**"
- ".github/workflows/main_push_apps.yaml"
- pnpm-lock.yaml
- package.json
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
build:
runs-on: ubuntu-latest
strategy:
fail-fast: true
matrix:
node-version: [18.x, 20.x]
steps:
- uses: actions/[email protected]
- uses: pnpm/[email protected]
with:
version: 8
- uses: actions/[email protected]
with:
node-version: ${{ matrix.node-version }}
cache: pnpm
# install
- run: pnpm i --frozen-lockfile
name: Install dependencies
- name: Generate deps 🍪
run: echo "Generate deps 🍪" # instead of pnpm run generate
env:
CI: true
- name: Verify Apps 🧷📦,⚡
run: pnpm turbo --filter "./apps/**" typecheck lint --concurrency 100%
- name: Check Apps and create build 🧪,🔨,
run: pnpm turbo --filter "./apps/**" build test --concurrency 100%
env:
CI: true