Skip to content

hotfix/TOPS-800: Renaming gsoft-inc organization to workleap in githu… #2202

hotfix/TOPS-800: Renaming gsoft-inc organization to workleap in githu…

hotfix/TOPS-800: Renaming gsoft-inc organization to workleap in githu… #2202

Workflow file for this run

name: CI
# Pnpm setup based on https://github.com/pnpm/action-setup#use-cache-to-reduce-installation-time
on:
push:
branches: [ "main" ]
pull_request:
branches: [ "main" ]
env:
CI: true
concurrency:
group: ci-${{ github.ref }}
cancel-in-progress: true
jobs:
build:
runs-on: ubuntu-latest
steps:
- name: Checkout code
uses: actions/checkout@v4
- name: Setup Node and PNPM
uses: ./.github/composite-actions/setup
- name: Install dependencies
run: pnpm i --frozen-lockfile
- name: Restore Turborepo cache
id: cache-turborepo-restore
uses: actions/cache/restore@v4
with:
key: ${{ runner.os }}-turborepo-${{ github.sha }}-ci
restore-keys: |
${{ runner.os }}-turborepo-
path: .turbo
- name: Generate documentation
run: pnpm doc:generate
- name: Build packages
run: pnpm build:pkg
- name: Build sample apps
run: pnpm build:apps
- name: Lint
run: pnpm lint
- name: Test
run: pnpm test
- name: Save Turborepo cache
id: cache-turborepo-save
if: always() && steps.cache-turborepo-restore.outputs.cache-hit != 'true'
uses: actions/cache/save@v4
with:
key: ${{ steps.cache-turborepo-restore.outputs.cache-primary-key }}
path: .turbo