We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9dc923d commit 6853c89Copy full SHA for 6853c89
1 file changed
.github/workflows/ci.yml
@@ -1,18 +1,18 @@
1
-name: CI Pipeline
+name: multi-stage-react-project-ci/cd
2
3
on:
4
push:
5
- branches: [docker]
+ branches: [docker, SSR+Docker]
6
pull_request:
7
8
9
jobs:
10
test-and-build:
11
runs-on: ubuntu-latest
12
13
strategy:
14
matrix:
15
- node-version: [22.x]
+ node-version: [20.x]
16
17
steps:
18
- name: Checkout code
@@ -49,7 +49,7 @@ jobs:
49
docker-build:
50
needs: test-and-build
51
52
- if: github.ref == 'refs/heads/docker'
+ if: github.ref == 'refs/heads/docker' || github.ref == 'refs/heads/SSR+Docker'
53
54
55
0 commit comments