Skip to content

Commit

Permalink
Added gh-actions for 3x
Browse files Browse the repository at this point in the history
  • Loading branch information
dfahlander committed Jun 19, 2023
1 parent 7680f51 commit e7a5744
Showing 1 changed file with 44 additions and 0 deletions.
44 changes: 44 additions & 0 deletions .github/workflows/main.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,44 @@
name: Build and Test 3x

on: [push, workflow_dispatch]

env:
#LAMBDATEST: "true" # Uncomment this line to run tests on LambdaTest instead of Browserstack
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/unit
- addons/Dexie.Observable/test/integration
- addons/Dexie.Syncable/test/unit
- addons/addons/Dexie.Syncable/test/integration
- 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 Node.js
uses: actions/setup-node@v3
with:
node-version: 16
cache: "npm"
- name: Install dependencies
run: npm install
- name: Build
run: npm run build
- name: Run headless test
uses: coactions/setup-xvfb@v1
with:
run: bash ./travis.sh
working-directory: ${{ matrix.TF }}

0 comments on commit e7a5744

Please sign in to comment.