Skip to content

Commit b7dbc6f

Browse files
committed
chore(repo): Cleanup ci.yml
1 parent 50c7b64 commit b7dbc6f

2 files changed

Lines changed: 1 addition & 10 deletions

File tree

.github/actions/init/action.yml

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -94,7 +94,6 @@ runs:
9494
uses: actions/setup-node@v4
9595
with:
9696
node-version: ${{ inputs.node-version }}
97-
NODE_AUTH_TOKEN: ${{ inputs.node-auth-token }}
9897
registry-url: ${{ inputs.registry-url }}
9998

10099
- name: Cache node_modules

.github/workflows/ci.yml

Lines changed: 1 addition & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -133,19 +133,16 @@ jobs:
133133

134134
strategy:
135135
matrix:
136-
# TODO: Remove `matrix.test-name != 'remix'` when ready, or from matrix when required check is disabled
137-
test-name: [ 'generic', 'nextjs', 'remix' ]
136+
test-name: [ 'generic', 'nextjs' ]
138137

139138
steps:
140139
- name: Checkout Repo
141-
if: ${{ matrix.test-name != 'remix' }}
142140
uses: actions/checkout@v4
143141
with:
144142
fetch-depth: 0
145143
show-progress: false
146144

147145
- name: Setup
148-
if: ${{ matrix.test-name != 'remix' }}
149146
id: config
150147
uses: ./.github/actions/init
151148
with:
@@ -155,24 +152,20 @@ jobs:
155152
playwright-enabled: true
156153

157154
- name: Verdaccio
158-
if: ${{ matrix.test-name != 'remix' }}
159155
uses: ./.github/actions/verdaccio
160156
with:
161157
publish-cmd: |
162158
if [ "$(npm config get registry)" = "https://registry.npmjs.org/" ]; then echo 'Error: Using default registry' && exit 1; else npx turbo build $TURBO_ARGS && npx changeset publish --no-git-tag; fi
163159
164160
- name: Install @clerk/backend in /integration
165-
if: ${{ matrix.test-name != 'remix' }}
166161
working-directory: ./integration
167162
run: npm init -y && npm install @clerk/backend
168163

169164
- name: Install @clerk/clerk-js in os temp
170-
if: ${{ matrix.test-name != 'remix' }}
171165
working-directory: ${{runner.temp}}
172166
run: mkdir clerk-js && cd clerk-js && npm init -y && npm install @clerk/clerk-js
173167

174168
- name: Run Integration Tests
175-
if: ${{ matrix.test-name != 'remix' }}
176169
run: npm run test:integration:${{ matrix.test-name }}
177170
env:
178171
E2E_APP_CLERK_JS_DIR: ${{runner.temp}}
@@ -181,7 +174,6 @@ jobs:
181174
MAILSAC_API_KEY: ${{ secrets.MAILSAC_API_KEY }}
182175

183176
# - name: Upload Integration Report for ${{ matrix.test-name }}
184-
# if: ${{ matrix.test-name != 'remix' }}
185177
# uses: actions/upload-artifact@v3
186178
# if: always()
187179
# with:

0 commit comments

Comments
 (0)