From 394cd2788a9718762dee28a8009d5251e204bd96 Mon Sep 17 00:00:00 2001 From: violine1101 Date: Wed, 2 Oct 2024 16:49:13 +0200 Subject: [PATCH] Workflow: Name PR workflow stages --- .github/workflows/pull-request-build.yml | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/.github/workflows/pull-request-build.yml b/.github/workflows/pull-request-build.yml index 92630e8..e2415fc 100644 --- a/.github/workflows/pull-request-build.yml +++ b/.github/workflows/pull-request-build.yml @@ -17,12 +17,13 @@ jobs: - name: Checkout repository uses: actions/checkout@v3 - - name: Setup Node.js ${{ matrix.node-version }} + - name: Set up Node.js ${{ matrix.node-version }} uses: actions/setup-node@v3 with: node-version: ${{ matrix.node-version }} - - uses: actions/cache@v3 + - name: Set up cache for NPM modules + uses: actions/cache@v3 with: path: ~/.npm key: ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}