organize dependencies

This commit is contained in:
Elio Bischof
2023-06-16 01:36:19 +02:00
parent 5a322bf727
commit a9ad6afc3a
13 changed files with 187 additions and 59 deletions

40
.github/workflows/install.yml vendored Normal file
View File

@@ -0,0 +1,40 @@
name: Install
on:
pull_request:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
install:
name: Install
runs-on: ubuntu-latest
steps:
- name: Checkout Repo
uses: actions/checkout@v2
- name: Setup pnpm 7
uses: pnpm/action-setup@v2
with:
version: 7
- name: Setup Node.js 16.x
uses: actions/setup-node@v2
with:
node-version: 16.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-
- name: Install Dependencies
id: deps
run: pnpm install

View File

@@ -1,12 +1,19 @@
name: Test
name: Quality
on:
pull_request:
concurrency: ${{ github.workflow }}-${{ github.ref }}
jobs:
test:
name: Test
quality:
name: Ensure Quality
runs-on: ubuntu-latest
needs: dependencies
strategy:
fail-fast: false
matrix:
command:
- lint
- test:unit
- test:integration
steps:
- name: Checkout Repo
uses: actions/checkout@v2
@@ -18,9 +25,27 @@ jobs:
uses: actions/setup-node@v2
with:
node-version: 16.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-
- name: Install Dependencies
id: deps
run: pnpm install
- name: Test
id: test
run: pnpm test
- name: Check
id: check
run: pnpm ${{ matrix.command }}