From 2788bc82d8a36f0a0adbf648b67ad5850d75c9f4 Mon Sep 17 00:00:00 2001 From: jcserv Date: Wed, 16 Oct 2024 17:21:09 -0400 Subject: [PATCH] tweak: rename to ci.yml --- .github/workflows/{test.yml => ci.yml} | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) rename .github/workflows/{test.yml => ci.yml} (78%) diff --git a/.github/workflows/test.yml b/.github/workflows/ci.yml similarity index 78% rename from .github/workflows/test.yml rename to .github/workflows/ci.yml index 7fbeecf..3f145d3 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/ci.yml @@ -1,4 +1,4 @@ -name: test +name: ci on: push: @@ -7,20 +7,20 @@ on: pull_request: jobs: - lint: - name: lint + ci: + name: ci runs-on: ubuntu-latest steps: - - name: Set up pnpm - uses: pnpm/action-setup@v3 - - uses: actions/checkout@v2 + - name: Setup pnpm + uses: pnpm/action-setup@v3 + - name: Cache dependencies uses: actions/cache@v2 with: path: "**/node_modules" - key: ${{ runner.os }}-modules-${{ hashFiles('**/yarn.lock') }} + key: ${{ runner.os }}-modules-${{ hashFiles('**/pnpm-lock.yaml') }} - name: Install dependencies run: pnpm i