From 06a934a0992ec3faa1a5d1c8032b10bc91ab3b9d Mon Sep 17 00:00:00 2001 From: Daan Vanden Bosch Date: Tue, 29 Sep 2020 17:37:56 +0200 Subject: [PATCH] Added caching to GitHub CI action. --- .github/workflows/ci.yml | 23 ++++++++++++++++++----- 1 file changed, 18 insertions(+), 5 deletions(-) diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index b3ca394b..d0238e46 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -11,20 +11,33 @@ jobs: runs-on: ubuntu-latest steps: - - uses: actions/checkout@v2 + - name: Git checkout + uses: actions/checkout@v2 - - uses: CultureHQ/actions-yarn@v1.0.1 + - name: Yarn cache + uses: actions/cache@v2 + env: + cache-name: yarn-cache + with: + path: ~/.yarn/cache + key: ${{ runner.os }}-build-${{ env.cache-name }} + + - name: Install dependencies + uses: CultureHQ/actions-yarn@v1.0.1 with: args: install - - uses: CultureHQ/actions-yarn@v1.0.1 + - name: Check formatting and lint + uses: CultureHQ/actions-yarn@v1.0.1 with: args: lint - - uses: CultureHQ/actions-yarn@v1.0.1 + - name: Run test suite + uses: CultureHQ/actions-yarn@v1.0.1 with: args: test - - uses: CultureHQ/actions-yarn@v1.0.1 + - name: Build + uses: CultureHQ/actions-yarn@v1.0.1 with: args: build