Enabling Lambdatests again #164
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
name: Build and Test | |
on: [push, workflow_dispatch] | |
env: | |
LAMBDATEST: "true" | |
GH_ACTIONS: "true" | |
LT_USERNAME: ${{ secrets.LT_USERNAME }} | |
LT_ACCESS_KEY: ${{ secrets.LT_ACCESS_KEY }} | |
BROWSER_STACK_USERNAME: ${{ secrets.BROWSER_STACK_USERNAME }} | |
BROWSER_STACK_ACCESS_KEY: ${{ secrets.BROWSER_STACK_ACCESS_KEY }} | |
jobs: | |
test: | |
runs-on: ubuntu-latest | |
strategy: | |
matrix: | |
TF: | |
- test | |
- addons/Dexie.Observable/test | |
- addons/Dexie.Syncable/test | |
- addons/dexie-export-import/test | |
- libs/dexie-react-hooks/test | |
fail-fast: true # If one test fails, abort the rest of the tests | |
max-parallel: 1 # At least for browserstack, this seems to be needed to avoid timeouts | |
steps: | |
- name: Checkout code | |
uses: actions/checkout@v3 | |
- name: Set up pnpm | |
uses: pnpm/action-setup@v2 | |
with: | |
version: 8 | |
- name: Set up Node.js | |
uses: actions/setup-node@v3 | |
with: | |
node-version: 18 | |
cache: "pnpm" | |
- name: Install dependencies | |
run: pnpm install --no-frozen-lockfile | |
- name: Build | |
run: pnpm run build | |
- name: Set LT_TUNNEL_NAME | |
run: echo "LT_TUNNEL_NAME=${{ matrix.TF }}-${{ github.run_id }}-${{ github.run_attempt }}" >> $GITHUB_ENV | |
- name: Run headless test | |
uses: coactions/setup-xvfb@v1 | |
with: | |
run: bash ./gh-actions.sh | |
working-directory: ${{ matrix.TF }} |