mirror of
https://github.com/zitadel/zitadel.git
synced 2025-12-12 13:52:20 +00:00
75 lines
1.6 KiB
YAML
75 lines
1.6 KiB
YAML
name: Quality
|
|
|
|
on: pull_request
|
|
|
|
jobs:
|
|
quality:
|
|
name: Ensure Quality
|
|
|
|
runs-on: ubuntu-latest
|
|
|
|
timeout-minutes: 30
|
|
|
|
permissions:
|
|
contents: "read"
|
|
|
|
strategy:
|
|
fail-fast: false
|
|
matrix:
|
|
command:
|
|
- lint
|
|
- test:unit
|
|
- test:integration
|
|
|
|
steps:
|
|
- name: Checkout Repo
|
|
uses: actions/checkout@v3
|
|
|
|
- name: Setup pnpm 8
|
|
uses: pnpm/action-setup@v3
|
|
with:
|
|
version: 8
|
|
|
|
- name: Setup Node.js 20.x
|
|
uses: actions/setup-node@v3
|
|
with:
|
|
node-version: 20.x
|
|
|
|
- uses: pnpm/action-setup@v2
|
|
name: Install pnpm
|
|
id: pnpm-install
|
|
with:
|
|
version: 7
|
|
run_install: false
|
|
|
|
- name: Get pnpm store directory
|
|
id: pnpm-cache
|
|
shell: bash
|
|
run: |
|
|
echo "STORE_PATH=$(pnpm store path)" >> $GITHUB_OUTPUT
|
|
|
|
- uses: actions/cache@v3
|
|
name: Setup pnpm cache
|
|
with:
|
|
path: ${{ steps.pnpm-cache.outputs.STORE_PATH }}
|
|
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-pnpm-store-
|
|
|
|
- uses: actions/cache@v3
|
|
name: Setup Cypress binary cache
|
|
with:
|
|
path: ~/.cache/Cypress
|
|
key: ${{ runner.os }}-cypress-binary-${{ hashFiles('**/pnpm-lock.yaml') }}
|
|
restore-keys: |
|
|
${{ runner.os }}-cypress-binary-
|
|
if: ${{ matrix.command }} == "test:integration"
|
|
|
|
- name: Install Dependencies
|
|
id: deps
|
|
run: pnpm install
|
|
|
|
- name: Check
|
|
id: check
|
|
run: pnpm ${{ matrix.command }}
|