Skip to content

Commit 626b9ba

Browse files
committed
run auth tests sequentially
1 parent d8db704 commit 626b9ba

File tree

2 files changed

+2
-16
lines changed

2 files changed

+2
-16
lines changed

.github/workflows/test-all.yml

Lines changed: 1 addition & 15 deletions
Original file line numberDiff line numberDiff line change
@@ -51,10 +51,7 @@ jobs:
5151
path: "**/node_modules"
5252
key: node_modules-${{ runner.arch }}-${{ runner.os }}-${{ hashFiles('yarn.lock') }}
5353
- run: yarn install --frozen-lockfile
54-
- name: Test setup
55-
run: cp config/ci.config.json config/project.json
56-
- name: yarn build
57-
run: yarn build
54+
- run: yarn build
5855
- name: Upload build archive
5956
uses: actions/upload-artifact@v4
6057
with:
@@ -116,17 +113,6 @@ jobs:
116113
runs-on: ubuntu-latest
117114
steps:
118115
- uses: actions/checkout@v4
119-
# install Chrome first, so the correct version of webdriver can be installed by chromedriver
120-
# when setting up the repo
121-
- name: install Chrome stable
122-
run: |
123-
npx @puppeteer/browsers install chrome@stable
124-
chromeVersionString=$(ls chrome)
125-
if [ "$CHROME_VALIDATED_VERSION" != "$chromeVersionString" ]; then
126-
echo "::warning ::The Chrome version doesn't match the previously validated version. Consider updating CHROME_VALIDATED_VERSION in the GitHub workflow if tests pass."
127-
echo "::warning ::Previously validated version: ${CHROME_VALIDATED_VERSION} vs. Installed version: $chromeVersionString"
128-
echo "CHROME_VERSION_NOTES=$CHROME_VERSION_MISMATCH_MESSAGE" >> "$GITHUB_ENV"
129-
fi
130116
- name: Test Env TEMP
131117
run: |
132118
echo $CHROME_VERSION_NOTES=$CHROME_VERSION_MISMATCH_MESSAGE

packages/auth/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -90,7 +90,7 @@
9090
"build:scripts": "tsc -moduleResolution node --module commonjs scripts/*.ts && ls scripts/*.js | xargs -I % sh -c 'terser % -o %'",
9191
"dev": "rollup -c -w",
9292
"test": "run-p --npm-path npm lint test:all",
93-
"test:all": "run-p --npm-path npm test:browser:unit test:node:unit test:integration test:browser:integration:prodbackend",
93+
"test:all": "run-s --npm-path npm test:browser:unit test:node:unit test:integration test:browser:integration:prodbackend",
9494
"test:integration": "firebase emulators:exec --project emulatedproject --only auth \"run-s --npm-path npm test:browser:integration:local test:node:integration:local test:webdriver\"",
9595
"test:ci": "node ../../scripts/run_tests_in_ci.js -s test:all",
9696
"test:integration:local": "run-s --npm-path npm test:node:integration:local test:browser:integration:local test:webdriver",

0 commit comments

Comments
 (0)