Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

ci: additional smoke tests #283

Merged
merged 21 commits into from
Oct 8, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
c8eff43
smoketests: add more node smoketests, streamline node tests
perf2711 Sep 5, 2024
ddee2f0
smoketests: move jest tests to separate directory
perf2711 Sep 5, 2024
36f7294
smoketests: make rxid test more strict in Node
perf2711 Sep 5, 2024
7a96b48
smoketests: change smoketests to module, move installing and building…
perf2711 Sep 5, 2024
f2fdeb6
smoketests: add simple WDIO tests for React
perf2711 Sep 5, 2024
a9b7634
smoketests: add session replay to React test
perf2711 Sep 5, 2024
acee375
smoketests: add SAUCE_* credentials in workflows
perf2711 Sep 5, 2024
3b550a2
workflows: split into all and rest
perf2711 Sep 6, 2024
2dc724a
smoketests: fix node tests on windows
perf2711 Sep 6, 2024
6255b23
smoketests: wrap args in quotes on Windows in npm
perf2711 Sep 6, 2024
79e88db
smoketests: replace tsx with ts-node in prepare-packages
perf2711 Sep 6, 2024
d977a56
smoketests: fix invalid paths to sdk packages in test packages
perf2711 Sep 10, 2024
26b5504
smoketests: add more tests to react
perf2711 Sep 10, 2024
e049acb
smoketests: add more node smoketests with database
perf2711 Sep 11, 2024
9cfbb45
smoketests: use exceptions instead of messages in node tests
perf2711 Sep 11, 2024
f253487
smoketests: listen on db events in node
perf2711 Sep 25, 2024
b0569b8
smoketests: add --unhandled-rejections=throw to node test programs
perf2711 Sep 25, 2024
e18a026
smoketests: downgrade @wdio packages to 8.40.x
perf2711 Sep 27, 2024
7d0e1f3
smoketests: add iOS simulator target to WDIO
perf2711 Oct 4, 2024
aa0d045
smoketests: make cleaning optional
perf2711 Oct 4, 2024
0d5954b
smoketests: add README
perf2711 Oct 4, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
52 changes: 40 additions & 12 deletions .github/workflows/test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,13 +6,42 @@ on:
pull_request:

jobs:
test_linux_all:
runs-on: ubuntu-latest

strategy:
matrix:
node-version: [20.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run format:check
- run: npm test
- run: npm run smoketest:node
env:
SMOKETESTS_SUBMIT_LAYER_URL: ${{ secrets.SMOKETESTS_SUBMIT_LAYER_URL }}
SMOKETESTS_DIRECT_SUBMIT_URL: ${{ secrets.SMOKETESTS_DIRECT_SUBMIT_URL }}
- run: npm run smoketest:browser
env:
SMOKETESTS_SUBMIT_LAYER_URL: ${{ secrets.SMOKETESTS_SUBMIT_LAYER_URL }}
SMOKETESTS_DIRECT_SUBMIT_URL: ${{ secrets.SMOKETESTS_DIRECT_SUBMIT_URL }}
SMOKETESTS_SAUCE_USERNAME: ${{ secrets.SMOKETESTS_SAUCE_USERNAME }}
SMOKETESTS_SAUCE_ACCESS_KEY: ${{ secrets.SMOKETESTS_SAUCE_ACCESS_KEY }}

test_linux:
runs-on: ubuntu-latest

strategy:
matrix:
build-version: [20.x]
node-version: [16.x, 18.x, 20.x]
node-version: [16.x, 18.x]

steps:
- uses: actions/checkout@v4
Expand All @@ -22,14 +51,12 @@ jobs:
node-version: ${{ matrix.build-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run format:check
- name: Test using Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm test
- run: npm run smoketest
- run: npm run smoketest:node
env:
SMOKETESTS_SUBMIT_LAYER_URL: ${{ secrets.SMOKETESTS_SUBMIT_LAYER_URL }}
SMOKETESTS_DIRECT_SUBMIT_URL: ${{ secrets.SMOKETESTS_DIRECT_SUBMIT_URL }}
Expand All @@ -50,33 +77,34 @@ jobs:
node-version: ${{ matrix.build-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run format:check
- name: Test using Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: ${{ matrix.node-version }}
- run: npm i -g npm@8
- run: npm test
- run: npm run smoketest
- run: npm run smoketest:node
env:
SMOKETESTS_SUBMIT_LAYER_URL: ${{ secrets.SMOKETESTS_SUBMIT_LAYER_URL }}
SMOKETESTS_DIRECT_SUBMIT_URL: ${{ secrets.SMOKETESTS_DIRECT_SUBMIT_URL }}

test_windows:
runs-on: windows-latest

strategy:
matrix:
node-version: [18.x]

steps:
- uses: actions/checkout@v4
- name: Use Node.js 18.x
- name: Use Node.js ${{ matrix.node-version }}
uses: actions/setup-node@v4
with:
node-version: 18.x
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run build
- run: npm run lint
- run: npm run format:check
- run: npm test
- run: npm run smoketest
- run: npm run smoketest:node
env:
SMOKETESTS_SUBMIT_LAYER_URL: ${{ secrets.SMOKETESTS_SUBMIT_LAYER_URL }}
SMOKETESTS_DIRECT_SUBMIT_URL: ${{ secrets.SMOKETESTS_DIRECT_SUBMIT_URL }}
Loading