We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 419cfb5 commit e378af2Copy full SHA for e378af2
.github/workflows/release-check.yml
@@ -1,13 +1,13 @@
1
-name: build + eslint check
+name: build + eslint check on release
2
3
on:
4
pull_request:
5
branches:
6
- release
7
8
jobs:
9
- check:
10
- name: check
+ release-check:
+ name: release-check
11
runs-on: ubuntu-latest
12
outputs:
13
client: ${{steps.filter.outputs.client}}
@@ -23,7 +23,7 @@ jobs:
23
- 'server/**'
24
25
client:
26
- needs: check
+ needs: release-check
27
if: ${{needs.check.outputs.client=='true'}}
28
29
steps:
@@ -51,7 +51,7 @@ jobs:
51
run: cd client && npm run build
52
53
server:
54
55
if: ${{needs.check.outputs.server=='true'}}
56
57
0 commit comments