rename pipeline workflows

This commit is contained in:
Elio Bischof
2024-10-16 12:37:41 +02:00
parent ac7cbe5460
commit 5be0ed45ae
2 changed files with 2 additions and 18 deletions

View File

@@ -1,6 +1,5 @@
name: Acceptance Tests
on:
pull_request:
on: pull_request
jobs:
acceptance-tests:
timeout-minutes: 60

View File

@@ -1,18 +1,12 @@
name: Quality
name: Unit And Integration Tests
on: pull_request
jobs:
quality:
name: Ensure Quality
runs-on: ubuntu-latest
timeout-minutes: 30
permissions:
contents: "read"
strategy:
fail-fast: false
matrix:
@@ -21,31 +15,25 @@ jobs:
- lint
- test:unit
- test:integration
steps:
- name: Checkout Repo
uses: actions/checkout@v4.1.6
- name: Setup Node.js 20.x
uses: actions/setup-node@v4.0.2
with:
node-version: 20.x
- name: Setup pnpm
uses: pnpm/action-setup@v4.0.0
- uses: pnpm/action-setup@v4.0.0
name: Install pnpm
id: pnpm-install
with:
run_install: false
- name: Get pnpm store directory
id: pnpm-cache
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- uses: actions/cache@v4.0.2
name: Setup pnpm cache
with:
@@ -53,7 +41,6 @@ jobs:
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- uses: actions/cache@v4.0.2
name: Setup Cypress binary cache
with:
@@ -62,10 +49,8 @@ jobs:
restore-keys: |
${{ runner.os }}-cypress-binary-
if: ${{ matrix.command }} == "test:integration"
- name: Install Dependencies
run: pnpm install
- name: Check
id: check
run: pnpm ${{ matrix.command }}