We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 209e4b6 commit 0ba6645Copy full SHA for 0ba6645
.github/workflows/workflow.yml
@@ -5,14 +5,15 @@ on:
5
pull_request:
6
types: [labeled, synchronize, opened]
7
8
-env:
9
- e2e-cache-key: e2e-cache-key-${{ github.sha }}
10
- e2e-cache-path: ${{ github.workspace }}/.e2e-cache
11
-
12
jobs:
13
- checkout:
+ check-changed-packages:
+ name: Check if yarn.lock changed
14
runs-on: ubuntu-latest
15
steps:
16
- - name: Checkout
+ - name: Checkout code
17
uses: actions/checkout@v4
18
- - run: ls -al
+
+ - name: Get changed files
+ id: changed-files
+ # commit sha refers to v46.0.1: https://github.com/tj-actions/changed-files/commit/45fb12d7a8bedb4da42342e52fe054c6c2c3fd73
19
+ uses: tj-actions/changed-files@45fb12d7a8bedb4da42342e52fe054c6c2c3fd73
.gitignore
@@ -0,0 +1 @@
1
+node_modules/
0 commit comments