We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent df6a3db commit 83ca7c1Copy full SHA for 83ca7c1
.github/workflows/ci.yml
@@ -11,11 +11,19 @@ jobs:
11
test:
12
runs-on: ubuntu-22.04
13
steps:
14
- - uses: actions/checkout@v4
+ - name: Checkout
15
+ uses: actions/checkout@v4
16
with:
17
submodules: recursive
- - run: make ci
18
- - uses: actions/upload-artifact@v4
+
19
+ - name: Update submodules
20
+ run: git submodule update --init --remote
21
22
+ - name: Run tests
23
+ run: make ci
24
25
+ - name: Upload artifact
26
+ uses: actions/upload-artifact@v4
27
28
name: BackstopJS
29
path: backstop/backstop_data
0 commit comments