Skip to content

Commit f916893

Browse files
Update workflow to make it ready for merge
1 parent e1eb923 commit f916893

File tree

1 file changed

+4
-7
lines changed

1 file changed

+4
-7
lines changed

.github/workflows/auth-react-test-1.yml

Lines changed: 4 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,6 @@ on:
1010
branches:
1111
- master
1212
- "v[0-9]+.[0-9]+"
13-
- "ci/github-actions/auth-react/v0.49.0" # TODO: Remove this
1413
tags:
1514
- "(dev-)?v[0-9]+.[0-9]+.[0-9]+"
1615

@@ -32,8 +31,7 @@ jobs:
3231
strategy:
3332
fail-fast: true
3433
matrix:
35-
# fdi-version: ${{ fromJSON(needs.define-versions.outputs.fdiVersions) }}
36-
fdi-version: ["4.1", "3.1"]
34+
fdi-version: ${{ fromJSON(needs.define-versions.outputs.fdiVersions) }}
3735

3836
outputs:
3937
AUTH_REACT__LOG_DIR: ${{ steps.envs.outputs.AUTH_REACT__LOG_DIR }}
@@ -43,6 +41,7 @@ jobs:
4341
AUTH_REACT__TEST_MODE: ${{ steps.envs.outputs.AUTH_REACT__TEST_MODE }}
4442
AUTH_REACT__PORT: ${{ steps.envs.outputs.AUTH_REACT__PORT }}
4543
specs: ${{ steps.envs.outputs.specs }}
44+
fdiVersions: ${{ needs.define-versions.outputs.fdiVersions }}
4645

4746
steps:
4847
- uses: supertokens/get-versions-action@main
@@ -56,8 +55,7 @@ jobs:
5655
- uses: supertokens/auth-react-testing-action/setup@main
5756
id: envs
5857
with:
59-
# auth-react-version: ${{ steps.versions.outputs.authReactTag }}
60-
auth-react-version: ci/github-actions/auth-react/v0.49.0
58+
auth-react-version: ${{ github.sha }}
6159
node-sdk-version: ${{ steps.versions.outputs.nodeTag }}
6260
fdi-version: ${{ matrix.fdi-version }}
6361
use-common-app-and-test-server: "true"
@@ -70,8 +68,7 @@ jobs:
7068
max-parallel: 1 # This is important to avoid ddos GHA API
7169
fail-fast: false # Don't fail fast to avoid locking TF State
7270
matrix:
73-
# fdi-version: ${{ fromJSON(needs.define-versions.outputs.fdiVersions) }}
74-
fdi-version: ["4.1", "3.1"]
71+
fdi-version: ${{ fromJSON(needs.setup-auth-react.outputs.fdiVersions) }}
7572
with:
7673
fdi-version: ${{ matrix.fdi-version }}
7774
specs: ${{ needs.setup-auth-react.outputs.specs }}

0 commit comments

Comments
 (0)