Skip to content

Commit

Permalink
build: adjust settings for unit-test workflow
Browse files Browse the repository at this point in the history
  • Loading branch information
FlorianWoelki committed Oct 15, 2023
1 parent 0a7bc37 commit 2e32207
Show file tree
Hide file tree
Showing 2 changed files with 31 additions and 28 deletions.
53 changes: 27 additions & 26 deletions .github/workflows/pnpm-install.yml
Original file line number Diff line number Diff line change
@@ -1,34 +1,35 @@
name: 'PNPM install'

runs:
using: 'composite'
jobs:
cache-and-install:
runs-on: ubuntu-latest

steps:
- uses: actions/checkout@v3
steps:
- uses: actions/checkout@v3

- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16
- name: Install Node.js
uses: actions/setup-node@v3
with:
node-version: 16

- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false
- name: Install pnpm
uses: pnpm/action-setup@v2
with:
version: 8
run_install: false

- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Get pnpm store directory
shell: bash
run: |
echo "STORE_PATH=$(pnpm store path --silent)" >> $GITHUB_ENV
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Setup pnpm cache
uses: actions/cache@v3
with:
path: ${{ env.STORE_PATH }}
key: ${{ runner.os }}-pnpm-store-${{ hashFiles('**/pnpm-lock.yaml') }}
restore-keys: |
${{ runner.os }}-pnpm-store-
- name: Install dependencies
run: pnpm install
- name: Install dependencies
run: pnpm install
6 changes: 4 additions & 2 deletions .github/workflows/unit-test.yml
Original file line number Diff line number Diff line change
@@ -1,8 +1,10 @@
name: 'Unit Tests'

on:
- push
- pull_request
push:
branches:
- main
pull_request:

jobs:
cache-and-install:
Expand Down

0 comments on commit 2e32207

Please sign in to comment.